1 19 24 25 package org.netbeans.modules.j2ee.sun.share.configbean; 26 27 import java.util.ArrayList ; 28 import java.util.Collection ; 29 30 import javax.enterprise.deploy.model.DDBean ; 31 import javax.enterprise.deploy.spi.exceptions.ConfigurationException ; 32 33 34 38 public class EjbJarRef extends BaseModuleRef { 39 40 43 44 46 public EjbJarRef() { 47 } 48 49 public String getHelpId() { 50 return "AS_CFG_ModuleRef"; } 52 53 Collection getSnippets() { 54 return new ArrayList (); 56 } 57 58 boolean loadFromPlanFile(SunONEDeploymentConfiguration config) { 59 return false; 60 } 61 62 66 public String getTitleFragment() { 67 return bundle.getString("LBL_EjbTitleFragment"); } 69 } 70 | Popular Tags |