Home | History | Annotate | Download | only in javassist

Lines Matching refs:objectType

535          * @param objectType    the class instantiated for the initial value.
537 public static Initializer byNew(CtClass objectType) {
539 i.objectType = objectType;
560 * @param objectType the class instantiated for the initial value.
564 public static Initializer byNew(CtClass objectType,
567 i.objectType = objectType;
589 * @param objectType the class instantiated for the initial value.
594 public static Initializer byNewWithParams(CtClass objectType) {
596 i.objectType = objectType;
620 * @param objectType the class instantiated for the initial value.
624 public static Initializer byNewWithParams(CtClass objectType,
627 i.objectType = objectType;
656 i.objectType = methodClass;
691 i.objectType = methodClass;
724 i.objectType = methodClass;
761 i.objectType = methodClass;
984 CtClass objectType;
1001 code.addNew(objectType);
1014 code.addInvokespecial(objectType, "<init>", getDescriptor());
1043 code.addNew(objectType);
1054 code.addInvokespecial(objectType, "<init>", desc);
1082 // the method class is specified by objectType.
1110 code.addInvokestatic(objectType, methodName, mDesc);
1148 code.addInvokestatic(objectType, methodName, desc + typeDesc);