1 package net.sourceforge.ejtools.deploy.model; 2 3 import javax.enterprise.deploy.model.DDBean ; 4 import javax.enterprise.deploy.model.DDBeanRoot ; 5 import javax.enterprise.deploy.model.DeployableObject ; 6 import javax.enterprise.deploy.shared.ModuleType ; 7 8 16 public class DeployableObjectImpl implements DeployableObject 17 { 18 19 25 public DDBean [] getChildBean(String xpath) 26 { 27 return null; 28 } 29 30 31 40 public Class getClassFromScope(String className) 41 { 42 return null; 43 } 44 45 46 51 public DDBeanRoot getDDBeanRoot() 52 { 53 return null; 54 } 55 56 57 84 public String getModuleDTDVersion() 85 { 86 return null; 87 } 88 89 90 96 public String [] getText(String xpath) 97 { 98 return null; 99 } 100 101 102 107 public ModuleType getType() 108 { 109 return null; 110 } 111 } 112 113 | Popular Tags |