01: package com.sun.tools.xjc.generator.annotation.spec;
02:
03: import javax.xml.bind.annotation.XmlNsForm;
04: import javax.xml.bind.annotation.XmlSchema;
05: import com.sun.codemodel.JAnnotationWriter;
06:
07: public interface XmlSchemaWriter extends JAnnotationWriter<XmlSchema> {
08:
09: XmlSchemaWriter location(String value);
10:
11: XmlSchemaWriter namespace(String value);
12:
13: XmlNsWriter xmlns();
14:
15: XmlSchemaWriter elementFormDefault(XmlNsForm value);
16:
17: XmlSchemaWriter attributeFormDefault(XmlNsForm value);
18:
19: }
|