int realI = 0;
for (int i = 0; i < methodList.size (); ++i)
{
MethodEntry method = (MethodEntry)methodList.elementAt (i);
if (!localStub) {
((MethodGen)method.generator ()).stub (this.i.name(), isAbstract, symbolTable, method, stream, realI);
} else {
((MethodGen)method.generator ()).localstub (symbolTable, method, stream, realI, this.i);
}
if (method instanceof AttributeEntry && !((AttributeEntry)method).readOnly ())
realI += 2;