src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/LocalElement.java

Print this page




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.xml.internal.bind.v2.schemagen.xmlschema;
  27 
  28 import javax.xml.namespace.QName;
  29 import com.sun.xml.internal.txw2.TypedXmlWriter;
  30 import com.sun.xml.internal.txw2.annotation.XmlAttribute;
  31 import com.sun.xml.internal.txw2.annotation.XmlElement;
  32 





  33 @XmlElement("element")
  34 public interface LocalElement
  35     extends Element, Occurs, TypedXmlWriter
  36 {
  37 
  38 
  39     @XmlAttribute
  40     public LocalElement form(String value);
  41 
  42     @XmlAttribute
  43     public LocalElement name(String value);
  44 
  45     @XmlAttribute
  46     public LocalElement ref(QName value);
  47 
  48 }


  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.xml.internal.bind.v2.schemagen.xmlschema;
  27 
  28 import javax.xml.namespace.QName;
  29 import com.sun.xml.internal.txw2.TypedXmlWriter;
  30 import com.sun.xml.internal.txw2.annotation.XmlAttribute;
  31 import com.sun.xml.internal.txw2.annotation.XmlElement;
  32 
  33 /**
  34  * <p><b>
  35  *     Auto-generated, do not edit.
  36  * </b></p>
  37  */
  38 @XmlElement("element")
  39 public interface LocalElement
  40     extends Element, Occurs, TypedXmlWriter
  41 {
  42 
  43 
  44     @XmlAttribute
  45     public LocalElement form(String value);
  46 
  47     @XmlAttribute
  48     public LocalElement name(String value);
  49 
  50     @XmlAttribute
  51     public LocalElement ref(QName value);
  52 
  53 }