Exemplo n.º 1
0
 public Block invokeSpecial(
     ParameterizedType type,
     String name,
     ParameterizedType returnType,
     Iterable<ParameterizedType> parameterTypes) {
   nodes.add(InvokeInstruction.invokeSpecial(type, name, returnType, parameterTypes));
   return this;
 }
Exemplo n.º 2
0
 public Block invokeSpecial(
     Class<?> type, String name, Class<?> returnType, Iterable<Class<?>> parameterTypes) {
   nodes.add(InvokeInstruction.invokeSpecial(type, name, returnType, parameterTypes));
   return this;
 }
Exemplo n.º 3
0
 public Block invokeSpecial(MethodDefinition method) {
   nodes.add(InvokeInstruction.invokeSpecial(method));
   return this;
 }