コード例 #1
0
ファイル: Block.java プロジェクト: slimmilan/presto
 public Block invokeConstructor(Class<?> type, Iterable<Class<?>> parameterTypes) {
   nodes.add(InvokeInstruction.invokeConstructor(type, parameterTypes));
   return this;
 }
コード例 #2
0
ファイル: Block.java プロジェクト: slimmilan/presto
 public Block invokeConstructor(
     ParameterizedType type, Iterable<ParameterizedType> parameterTypes) {
   nodes.add(InvokeInstruction.invokeConstructor(type, parameterTypes));
   return this;
 }
コード例 #3
0
ファイル: Block.java プロジェクト: slimmilan/presto
 public Block invokeConstructor(Constructor<?> constructor) {
   nodes.add(InvokeInstruction.invokeConstructor(constructor));
   return this;
 }