Should Javadoc comments be added to the implementation?

For methods that are implementation only (not overrides), sure, why not, especially if they are public. If you have an overriding situation and you are going to replicate any text, then definitely not. Replication is a surefire way of causing discrepancies. As a result, users would have a different understanding of your method based on … Read more

Do standard windows .ini files allow comments?

Windows INI API support for: Line comments: yes, using semi-colon ; Trailing comments: No The authoritative source is the Windows API function that reads values out of INI files GetPrivateProfileString Retrieves a string from the specified section in an initialization file. The reason “full line comments” work is because the requested value does not exist. … Read more

Adding comment to column when I create table in PostgreSQL?

Comments are attached to a column using the comment statement: create table session_log ( userid int not null, phonenumber int ); comment on column session_log.userid is ‘The user ID’; comment on column session_log.phonenumber is ‘The phone number including the area code’; You can also add a comment to the table: comment on table session_log is … Read more