1 28 29 package com.caucho.java.gen; 30 31 import com.caucho.bytecode.JMethod; 32 import com.caucho.java.JavaWriter; 33 import com.caucho.util.L10N; 34 35 import java.io.IOException ; 36 37 40 public class SuperMethodCallChain extends MethodCallChain { 41 private static L10N L = new L10N(SuperMethodCallChain.class); 42 43 46 public SuperMethodCallChain() 47 { 48 } 49 50 53 public SuperMethodCallChain(JMethod method) 54 { 55 super(method); 56 } 57 58 66 public void generateCall(JavaWriter out, String retVar, 67 String var, String []args) 68 throws IOException  69 { 70 super.generateCall(out, retVar, "super", args); 71 } 72 } 73 | Popular Tags |