Lines Matching refs:declaring
62 * @param declaring the class to which the created constructor is added.
64 public static CtConstructor make(String src, CtClass declaring)
67 Javac compiler = new Javac(declaring);
92 * @param declaring the class to which the created method is added.
96 String body, CtClass declaring)
100 CtConstructor cc = new CtConstructor(parameters, declaring);
117 * @param declaring the class to which the created method is added.
124 public static CtConstructor copy(CtConstructor c, CtClass declaring,
126 return new CtConstructor(c, declaring, map);
135 public static CtConstructor defaultConstructor(CtClass declaring)
138 CtConstructor cons = new CtConstructor((CtClass[])null, declaring);
140 ConstPool cp = declaring.getClassFile2().getConstPool();
144 code.addInvokespecial(declaring.getSuperclass(),
172 * @param declaring the class to which the created constructor
177 CtClass[] exceptions, CtClass declaring)
181 null, null, declaring);
192 * @param declaring the class to which the created constructor
196 CtClass[] exceptions, CtClass declaring)
200 null, null, declaring);
302 * @param declaring the class to which the created constructor
310 CtClass declaring)
314 howto, body, cparam, declaring);