1 16 17 package org.apache.wsdl.extensions.impl; 18 19 import org.apache.wsdl.extensions.ExtensionConstants; 20 import org.apache.wsdl.extensions.Schema; 21 import org.apache.wsdl.impl.WSDLExtensibilityElementImpl; 22 import org.w3c.dom.Element ; 23 24 28 public class SchemaImpl extends WSDLExtensibilityElementImpl implements ExtensionConstants, Schema { 29 30 private Element elelment; 31 32 public SchemaImpl(){ 33 type = SCHEMA; 34 } 35 36 40 public Element getElelment() { 41 return elelment; 42 } 43 44 48 public void setElelment(Element elelment) { 49 this.elelment = elelment; 50 } 51 } 52 | Popular Tags |