1 17 package org.apache.ws.jaxme.xs; 18 19 import org.apache.ws.jaxme.xs.xml.XsQName; 20 import org.apache.ws.jaxme.xs.xml.XsSchemaHeader; 21 import org.xml.sax.SAXException ; 22 23 24 28 public interface XSType extends XSOpenAttrs { 29 31 public XSAnnotation[] getAnnotations(); 32 33 35 public boolean isSimple(); 36 37 40 public XSSimpleType getSimpleType() throws SAXException ; 41 42 45 public XSComplexType getComplexType() throws SAXException ; 46 47 49 public boolean isGlobal(); 50 51 53 public void setGlobal(boolean pGlobal); 54 55 58 public XsQName getName(); 59 60 62 public boolean isBuiltin(); 63 64 67 public XsSchemaHeader getSchemaHeader(); 68 } 69 | Popular Tags |