1 29 30 package com.caucho.java.gen; 31 32 import com.caucho.bytecode.JClass; 33 import com.caucho.java.JavaWriter; 34 import com.caucho.util.L10N; 35 36 import java.io.IOException ; 37 38 41 public class CallChain { 42 private static final L10N L = new L10N(CallChain.class); 43 44 47 public JClass []getParameterTypes() 48 { 49 return new JClass[0]; 50 } 51 52 55 public JClass getReturnType() 56 { 57 return JClass.VOID; 58 } 59 60 63 public JClass []getExceptionTypes() 64 { 65 return new JClass[0]; 66 } 67 68 76 public void generateCall(JavaWriter out, String retVar, 77 String var, String []args) 78 throws IOException 79 { 80 } 81 } 82 | Popular Tags |