1 19 20 21 package org.netbeans.modules.j2ee.deployment.config; 22 23 import javax.enterprise.deploy.model.*; 24 import javax.enterprise.deploy.shared.ModuleType ; 25 26 public class DDRoot extends StandardDDImpl implements DDBeanRoot { 27 28 DDRoot(DDCommon base) { 29 super(base); 30 } 31 32 public ModuleType getType() { return proxy.support.getType(); } 33 34 public DeployableObject getDeployableObject() { return proxy.support.getDeployableObject(); } 35 36 public String getModuleDTDVersion() { return proxy.support.getVersion(); } 37 38 public String getDDBeanRootVersion() { 39 return proxy.support.getVersion(); 40 } 41 42 public String getFilename() { 43 return null; 44 } 45 46 } 47 | Popular Tags |