| org.apache.xerces.xs.XSParticle
All known Subclasses: org.apache.xerces.impl.xs.XSParticleDecl,
XSParticle | public interface XSParticle extends XSObject(Code) | | This interface represents the Particle schema component.
|
Method Summary | |
public XSObjectList | getAnnotations() A sequence of [annotations] or an empty XSObjectList . | public int | getMaxOccurs() [max occurs]: determines the maximum number of terms that can occur. | public boolean | getMaxOccursUnbounded() [max occurs]: whether the maxOccurs value is unbounded. | public int | getMinOccurs() [min occurs]: determines the minimum number of terms that can occur. | public XSTerm | getTerm() [term]: one of a model group, a wildcard, or an element declaration. |
getAnnotations | public XSObjectList getAnnotations()(Code) | | A sequence of [annotations] or an empty XSObjectList .
|
getMaxOccurs | public int getMaxOccurs()(Code) | | [max occurs]: determines the maximum number of terms that can occur.
To query for the value of unbounded use
maxOccursUnbounded . When the value of
maxOccursUnbounded is true , the value of
maxOccurs is unspecified.
|
getMaxOccursUnbounded | public boolean getMaxOccursUnbounded()(Code) | | [max occurs]: whether the maxOccurs value is unbounded.
|
getMinOccurs | public int getMinOccurs()(Code) | | [min occurs]: determines the minimum number of terms that can occur.
|
getTerm | public XSTerm getTerm()(Code) | | [term]: one of a model group, a wildcard, or an element declaration.
|
|
|