/** * Class description * @author Author Name */ publicclassClassA{ /** * Comments for a member variable */ publicint memberVar;
/** * Comments for another member variable */ publicint secondMemberVar;
/** * Constructor description * @param x description for parameter x * @param y description for parameter y */ publicClassA(int x, int y){ this.memberVar = x; this.secondMemberVar = y; }
/** * A member method description * @param string description for parameter string * @return description for the return value */ publicintClassA(String string){ return0; } }