Home | History | Annotate | Download | only in editor

Lines Matching refs:clazz

69     public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
72 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
75 codeAttribute.instructionsAccept(clazz, method, this);
81 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
84 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
93 clazz.constantPoolEntryAccept(constantInstruction.constantIndex, this);
96 if (!method.getName(clazz).equals(bridgedMethodName))
100 System.out.println("BridgeMethodFixer: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"] does not bridge to ["+bridgedMethodName+"]");
113 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant refConstant)
115 bridgedMethodName = refConstant.getName(clazz);