I think it would be nice to be able to generate a toString method that can
print out all variables.  Something like this:

private String name;
private String gender;

/** IDEA generated */
public String toString() {
        StringBuffer buf = new StringBuffer();
        buf.append("name=");
        buf.append(name);
        buf.append(", gender=");
        buf.append(gender);
        return buf.toString();
}

it would be even nicer to adjust this method when ever variables are added,
subtracted, or changed.

James Birchfield
Development Manager
Genscape, Inc.
(502) 583-2298 (o)
(502) 639-3136 (c)



_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to