01: package com.sun.xml.bind.v2.schemagen.xmlschema;
02:
03: import com.sun.xml.txw2.TypedXmlWriter;
04: import com.sun.xml.txw2.annotation.XmlElement;
05:
06: public interface NestedParticle extends TypedXmlWriter {
07:
08: @XmlElement
09: public LocalElement element();
10:
11: @XmlElement
12: public Any any();
13:
14: @XmlElement
15: public ExplicitGroup sequence();
16:
17: @XmlElement
18: public ExplicitGroup choice();
19:
20: }
|