public ClassTableItem (ClassDef klass, Location location) { flags = 0; Class = klass; LocationList = new ArrayList (); LocationList.Add (location); method_table = new MethodTable (klass); field_table = new FieldTable (klass); }
public ClassTableItem(ClassDef klass, Location location) { flags = 0; Class = klass; LocationList = new ArrayList(); LocationList.Add(location); method_table = new MethodTable(klass); field_table = new FieldTable(klass); }
public bool CheckDefined() { if (!Defined) { return(false); } if (!FieldTable.CheckDefined()) { return(false); } if (!MethodTable.CheckDefined()) { return(false); } return(true); }