01: package com.sun.tools.xjc.generator.annotation.spec;
02:
03: import javax.xml.bind.annotation.XmlSeeAlso;
04: import com.sun.codemodel.JAnnotationWriter;
05: import com.sun.codemodel.JType;
06:
07: public interface XmlSeeAlsoWriter extends JAnnotationWriter<XmlSeeAlso> {
08:
09: XmlSeeAlsoWriter value(Class value);
10:
11: XmlSeeAlsoWriter value(JType value);
12:
13: }
|