Rxyz
04-13-2006, 02:57 PM
In the jsp, I am creating there is a table which shows all the accounts.
To show the accounts in the table, I created an object Account and have some attributes which make a row of a table.
Account ----- object
name
Acct. no
Account bal
are the attributes of that object.
I created a List of this Account object and displaying in my jsp. everything works fine.
Now trying to write the javadoc for this object. I am not sure what to write in here i.e above the class. Any suggessions on what to write?
/**
* Account creates account object ----- ????
*/
public class Account() {
.....
}
I would appreciate your suggessions. thanks.
To show the accounts in the table, I created an object Account and have some attributes which make a row of a table.
Account ----- object
name
Acct. no
Account bal
are the attributes of that object.
I created a List of this Account object and displaying in my jsp. everything works fine.
Now trying to write the javadoc for this object. I am not sure what to write in here i.e above the class. Any suggessions on what to write?
/**
* Account creates account object ----- ????
*/
public class Account() {
.....
}
I would appreciate your suggessions. thanks.