Home | History | Annotate | Download | only in editor

Lines Matching defs:targetClass

36     private ProgramClass targetClass;
43 public ClassEditor(ProgramClass targetClass)
45 this.targetClass = targetClass;
54 int interfacesCount = targetClass.u2interfacesCount;
55 int[] interfaces = targetClass.u2interfaces;
60 targetClass.u2interfaces = new int[interfacesCount+1];
62 targetClass.u2interfaces, 0,
64 interfaces = targetClass.u2interfaces;
69 System.out.println(targetClass.getName()+": adding interface ["+targetClass.getClassName(interfaceConstantIndex)+"]");
73 interfaces[targetClass.u2interfacesCount++] = interfaceConstantIndex;
81 int interfacesCount = targetClass.u2interfacesCount;
82 int[] interfaces = targetClass.u2interfaces;
92 interfaces[--targetClass.u2interfacesCount] = 0;
102 int interfacesCount = targetClass.u2interfacesCount;
103 int[] interfaces = targetClass.u2interfaces;
122 int fieldsCount = targetClass.u2fieldsCount;
123 Field[] fields = targetClass.fields;
128 targetClass.fields = new ProgramField[fieldsCount+1];
130 targetClass.fields, 0,
132 fields = targetClass.fields;
137 System.out.println(targetClass.getName()+": adding field ["+field.getName(targetClass)+" "+field.getDescriptor(targetClass)+"]");
141 fields[targetClass.u2fieldsCount++] = field;
151 int fieldsCount = targetClass.u2fieldsCount;
152 Field[] fields = targetClass.fields;
162 fields[--targetClass.u2fieldsCount] = null;
172 int fieldsCount = targetClass.u2fieldsCount;
173 Field[] fields = targetClass.fields;
192 int methodsCount = targetClass.u2methodsCount;
193 Method[] methods = targetClass.methods;
198 targetClass.methods = new ProgramMethod[methodsCount+1];
200 targetClass.methods, 0,
202 methods = targetClass.methods;
207 System.out.println(targetClass.getName()+": adding method ["+method.getName(targetClass)+method.getDescriptor(targetClass)+"]");
211 methods[targetClass.u2methodsCount++] = method;
221 int methodsCount = targetClass.u2methodsCount;
222 Method[] methods = targetClass.methods;
232 methods[--targetClass.u2methodsCount] = null;
242 int methodsCount = targetClass.u2methodsCount;
243 Method[] methods = targetClass.methods;