<aw:import>java.io.Serializable</aw:import>
<aw:interface>java.io.Serializable</aw:interface>
<aw:parentClass>java.lang.Exception</aw:parentClass>
<aw:field> /** This is its int array. */ protected int[] anIntTab; </aw:field>
<aw:constructor name="C1"> /** * Constructor of the object. */ public <aw:className/>() { super(); } </aw:constructor>
<aw:method name="toString"> /** * Returns a string representation of the object. In general, the * toString method returns a string that * " textually represents " this object. * * @return a string representation of the object. */ public String toString() { StringBuffer sb = new StringBuffer(); sb.append('['); sb.append(getClass()); sb.append(']'); return sb.toString(); } </aw:method>
<aw:constructor name="C1"> /** * Constructor of the object. */ public <aw:className/>() { super(); } static { System.out.println("Yes"); } </aw:constructor>
<aw:field> /** This is the array of object. */ protected <aw:containedTypeEntered/>[] itsArray; static { System.out.println("Yes"); } </aw:field>