01: package com.sun.xml.bind.v2.schemagen.xmlschema;
02:
03: import com.sun.xml.txw2.TypedXmlWriter;
04: import com.sun.xml.txw2.annotation.XmlAttribute;
05: import com.sun.xml.txw2.annotation.XmlElement;
06:
07: @XmlElement("import")
08: public interface Import extends Annotated, TypedXmlWriter {
09:
10: @XmlAttribute
11: public Import namespace(String value);
12:
13: @XmlAttribute
14: public Import schemaLocation(String value);
15:
16: }
|