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("list")
09: public interface List extends Annotated, SimpleTypeHost, TypedXmlWriter {
10:
11: @XmlAttribute
12: public List itemType(QName value);
13:
14: }
|