javadoc wierdness - on suns own source

V

VisionSet

What the heck is going on here? The only error in my projects documentation,
and it's in suns own source!?

C:\j2sdk1.4.2_04\source\javax\swing\table\AbstractTableModel.java:64:
warning -
@param argument "column" is not a parameter name.


C:\j2sdk1.4.2_04\source\javax\swing\table\AbstractTableModel.java:64:
/**
* Returns a default name for the column using spreadsheet conventions:
* A, B, C, ... Z, AA, AB, etc. If <code>column</code> cannot be
found,
* returns an empty string.
*
* @param column the column being queried
* @return a string containing the default name of <code>column</code>
*/
public String getColumnName(int column) {
String result = "";
for (; column >= 0; column = column / 26 - 1) {
result = (char)((char)(column%26)+'A') + result;
}
return result;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top