Home | History | Annotate | Download | only in javassist

Lines Matching refs:declaring

50      * @param declaring         the class to which the field will be added.
57 public CtField(CtClass type, String name, CtClass declaring)
60 this(Descriptor.of(type), name, declaring);
75 * @param declaring the class to which the field will be added.
80 public CtField(CtField src, CtClass declaring)
84 declaring);
102 throw new CannotCompileException("bad declaring class: "
154 * @param declaring the class to which the created field is added.
156 public static CtField make(String src, CtClass declaring)
159 Javac compiler = new Javac(declaring);
202 * Returns the class declaring the field.