84N/A/*
84N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
84N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
84N/A *
84N/A * This code is free software; you can redistribute it and/or modify it
84N/A * under the terms of the GNU General Public License version 2 only, as
84N/A * published by the Free Software Foundation. Oracle designates this
84N/A * particular file as subject to the "Classpath" exception as provided
84N/A * by Oracle in the LICENSE file that accompanied this code.
84N/A *
84N/A * This code is distributed in the hope that it will be useful, but WITHOUT
84N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
84N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
84N/A * version 2 for more details (a copy is included in the LICENSE file that
84N/A * accompanied this code).
84N/A *
84N/A * You should have received a copy of the GNU General Public License version
84N/A * 2 along with this work; if not, write to the Free Software Foundation,
84N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
873N/A *
84N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
84N/A * or visit www.oracle.com if you need additional information or have any
84N/A * questions.
84N/A */
84N/A
828N/Apackage com.sun.xml.internal.bind.v2.schemagen.xmlschema;
84N/A
84N/Aimport com.sun.xml.internal.txw2.TypedXmlWriter;
84N/Aimport com.sun.xml.internal.txw2.annotation.XmlAttribute;
1895N/Aimport com.sun.xml.internal.txw2.annotation.XmlElement;
1895N/A
1920N/A@XmlElement("annotation")
1920N/Apublic interface Annotation
1920N/A extends TypedXmlWriter
1895N/A{
1895N/A
1895N/A
1920N/A @XmlElement
1920N/A public Appinfo appinfo();
84N/A
84N/A @XmlElement
623N/A public Documentation documentation();
84N/A
84N/A @XmlAttribute
84N/A public Annotation id(String value);
1895N/A
1895N/A}
1895N/A