1 6 7 package SOFA.Connector.ECG; 8 9 import org.w3c.dom.Element ; 10 11 16 public class DeploymentDescriptor extends ConnectorOutputDescriptor implements SOFA.Connector.DeploymentDescriptor { 17 18 19 public DeploymentDescriptor() { 20 super(); 21 } 22 23 public DeploymentDescriptor(Element e) throws SOFA.Connector.DeploymentDescriptorException { 24 super(); 25 try { 26 fromXML(e); 27 } catch (ConnectorDescriptorXMLException ex) { 28 throw new SOFA.Connector.DeploymentDescriptorException("Can't parse deployment descriptor.",ex); 29 } 30 } 31 32 public String getConnectorBuilder() { 33 return impl; 34 } 35 36 } 37 | Popular Tags |