/**
*
**/
protected void stub (String className, boolean isAbstract, Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index)
{
AttributeEntry a = (AttributeEntry)m;
// 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 ();
}