// Generate for the get method
super.stub (className, isAbstract, symbolTable, a, stream, index);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.stub (className, isAbstract, symbolTable, a, stream, index + 1);
clear ();
}