01: package com.sun.xml.bind.v2.schemagen.xmlschema;
02:
03: import javax.xml.namespace.QName;
04: import com.sun.xml.txw2.TypedXmlWriter;
05: import com.sun.xml.txw2.annotation.XmlAttribute;
06: import com.sun.xml.txw2.annotation.XmlElement;
07:
08: @XmlElement("union")
09: public interface Union extends Annotated, SimpleTypeHost,
10: TypedXmlWriter {
11:
12: @XmlAttribute
13: public Union memberTypes(QName[] value);
14:
15: }
|