1 17 package org.apache.ws.jaxme.xs; 18 19 import org.apache.ws.jaxme.xs.xml.*; 20 21 22 26 public interface XSComplexType { 27 35 public boolean hasSimpleContent(); 36 37 40 public XSSimpleContentType getSimpleContent(); 41 42 53 public XsComplexContentType getComplexContentType(); 54 55 62 public boolean isEmpty(); 63 64 71 public boolean isElementOnly(); 72 73 80 public boolean isMixed(); 81 82 86 public XSParticle getParticle(); 87 88 90 public XSAttributable[] getAttributes(); 91 92 94 public boolean isExtension(); 95 96 99 public XSType getExtendedType(); 100 101 103 public boolean isRestriction(); 104 105 108 public XSType getRestrictedType(); 109 } 110 | Popular Tags |