1 package net.sourceforge.ejtools.deploy.model; 2 3 import javax.enterprise.deploy.model.DDBean ; 4 import javax.enterprise.deploy.model.DeployableObject ; 5 import javax.enterprise.deploy.model.J2eeApplicationObject ; 6 import javax.enterprise.deploy.model.XpathListener ; 7 import javax.enterprise.deploy.shared.ModuleType ; 8 9 15 public class J2eeApplicationObjectImpl extends DeployableObjectImpl implements J2eeApplicationObject 16 { 17 18 25 public void addXpathListener(ModuleType type, String xpath, XpathListener xpl) { } 26 27 28 35 public DDBean [] getChildBean(ModuleType type, String xpath) 36 { 37 return null; 38 } 39 40 41 47 public DeployableObject getDeployableObject(String uri) 48 { 49 return null; 50 } 51 52 53 59 public DeployableObject [] getDeployableObjects(ModuleType type) 60 { 61 return null; 62 } 63 64 65 70 public DeployableObject [] getDeployableObjects() 71 { 72 return null; 73 } 74 75 76 82 public String [] getModuleUris(ModuleType type) 83 { 84 return null; 85 } 86 87 88 93 public String [] getModuleUris() 94 { 95 return null; 96 } 97 98 99 106 public String [] getText(ModuleType type, String xpath) 107 { 108 return null; 109 } 110 111 112 119 public void removeXpathListener(ModuleType type, String xpath, XpathListener xpl) { } 120 121 } 122 123 | Popular Tags |