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: public interface Annotated extends TypedXmlWriter {
08:
09: @XmlElement
10: public Annotation annotation();
11:
12: @XmlAttribute
13: public Annotated id(String value);
14:
15: }
|