1 29 30 package com.caucho.ejb.cfg; 31 32 import com.caucho.bytecode.JMethod; 33 import com.caucho.ejb.gen.ViewClass; 34 import com.caucho.java.gen.BaseMethod; 35 import com.caucho.util.L10N; 36 37 40 public class EjbCreateMethod extends EjbMethod { 41 private static final L10N L = new L10N(EjbCreateMethod.class); 42 43 50 public EjbCreateMethod(EjbView view, JMethod apiMethod, JMethod implMethod) 51 { 52 super(view, apiMethod, implMethod); 53 } 54 55 58 public BaseMethod assemble(ViewClass viewAssembler, String fullClassName) 59 { 60 return viewAssembler.createCreateMethod(getApiMethod(), 61 getImplMethod(), 62 fullClassName, 63 getViewPrefix()); 64 } 65 } 66 | Popular Tags |