1 29 30 package com.caucho.ejb.gen; 31 32 import com.caucho.bytecode.JClass; 33 import com.caucho.bytecode.JMethod; 34 import com.caucho.ejb.cfg.EjbEntityBean; 35 import com.caucho.java.gen.BaseMethod; 36 import com.caucho.util.L10N; 37 38 41 public class AmberView extends EntityView { 42 private static L10N L = new L10N(AmberView.class); 43 44 public AmberView(JClass remoteClass, 45 String contextClassName, 46 String prefix) 47 { 48 super(remoteClass, contextClassName, prefix); 49 } 50 51 public BaseMethod createCreateMethod(EjbEntityBean bean, 52 JMethod api, 53 JMethod create, 54 JMethod postCreate, 55 String fullClassName) 56 { 57 return new AmberCreateMethod(bean, api, create, postCreate, fullClassName); 58 } 59 } 60 | Popular Tags |