1 17 package org.apache.ws.jaxme.xs; 18 19 20 24 public interface XSSimpleType { 25 27 public boolean isAtomic(); 28 31 public XSAtomicType getAtomicType(); 32 34 public boolean isList(); 35 38 public XSListType getListType(); 39 41 public boolean isUnion(); 42 45 public XSUnionType getUnionType(); 46 47 54 public String [][] getPattern(); 55 56 58 public XSEnumeration[] getEnumerations(); 59 60 64 public boolean isRestriction(); 65 66 72 public XSType getRestrictedType(); 73 } 74 | Popular Tags |