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("restriction")
09: public interface ComplexRestriction extends Annotated, AttrDecls,
10: TypeDefParticle, TypedXmlWriter {
11:
12: @XmlAttribute
13: public ComplexRestriction base(QName value);
14:
15: }
|