< prev index next >

src/java.xml.bind/share/classes/javax/xml/bind/annotation/XmlValue.java

Print this page


   1 /*
   2  * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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


  50  * additional common information.</p>
  51  *
  52  * The usage is subject to the following usage constraints:
  53  * <ul>
  54  *   <li>At most one field or property can be annotated with the
  55  *       <tt>@XmlValue</tt> annotation. </li>
  56  *
  57  *   <li><tt>@XmlValue</tt> can be used with the following
  58  *   annotations: {@link XmlList}. However this is redundant since
  59  *   {@link XmlList} maps a type to a simple schema type that derives by
  60  *   list just as {@link XmlValue} would. </li>
  61  *
  62  *   <li>If the type of the field or property is a collection type,
  63  *       then the collection item type must map to a simple schema
  64  *       type.  </li>
  65  *
  66  *   <li>If the type of the field or property is not a collection
  67  *       type, then the type must map to a XML Schema simple type. </li>
  68  *
  69  * </ul>
  70  * </p>
  71  * <p>
  72  * If the annotated JavaBean property is the sole class member being
  73  * mapped to XML Schema construct, then the class is mapped to a
  74  * simple type.
  75  *
  76  * If there are additional JavaBean properties (other than the
  77  * JavaBean property annotated with <tt>@XmlValue</tt> annotation)
  78  * that are mapped to XML attributes, then the class is mapped to a
  79  * complex type with simpleContent.
  80  * </p>
  81  *
  82  * <p> <b> Example 1: </b> Map a class to XML Schema simpleType</p>
  83  *
  84  *   <pre>
  85  *
  86  *     // Example 1: Code fragment
  87  *     public class USPrice {
  88  *         @XmlValue
  89  *         public java.math.BigDecimal price;
  90  *     }
  91  *
  92  *     &lt;!-- Example 1: XML Schema fragment -->
  93  *     &lt;xs:simpleType name="USPrice">
  94  *       &lt;xs:restriction base="xs:decimal"/>
  95  *     &lt;/xs:simpleType>
  96  *
  97  *   </pre>
  98  *
  99  * <p><b> Example 2: </b> Map a class to XML Schema complexType with
 100  *        with simpleContent.</p>
 101  *
 102  *   <pre>
 103  *
 104  *   // Example 2: Code fragment
 105  *   public class InternationalPrice {
 106  *       @XmlValue
 107  *       public java.math.BigDecimal price;
 108  *
 109  *       @XmlAttribute
 110  *       public String currency;
 111  *   }
 112  *
 113  *   &lt;!-- Example 2: XML Schema fragment -->
 114  *   &lt;xs:complexType name="InternationalPrice">
 115  *     &lt;xs:simpleContent>
 116  *       &lt;xs:extension base="xs:decimal">
 117  *         &lt;xs:attribute name="currency" type="xs:string"/>
 118  *       &lt;/xs:extension>
 119  *     &lt;/xs:simpleContent>
 120  *   &lt;/xs:complexType>
 121  *
 122  *   </pre>
 123  * </p>
 124  *
 125  * @author Sekhar Vajjhala, Sun Microsystems, Inc.
 126  * @see XmlType
 127  * @since 1.6, JAXB 2.0
 128  */
 129 
 130 @Retention(RUNTIME) @Target({FIELD, METHOD})
 131 public @interface XmlValue {}
   1 /*
   2  * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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


  50  * additional common information.</p>
  51  *
  52  * The usage is subject to the following usage constraints:
  53  * <ul>
  54  *   <li>At most one field or property can be annotated with the
  55  *       <tt>@XmlValue</tt> annotation. </li>
  56  *
  57  *   <li><tt>@XmlValue</tt> can be used with the following
  58  *   annotations: {@link XmlList}. However this is redundant since
  59  *   {@link XmlList} maps a type to a simple schema type that derives by
  60  *   list just as {@link XmlValue} would. </li>
  61  *
  62  *   <li>If the type of the field or property is a collection type,
  63  *       then the collection item type must map to a simple schema
  64  *       type.  </li>
  65  *
  66  *   <li>If the type of the field or property is not a collection
  67  *       type, then the type must map to a XML Schema simple type. </li>
  68  *
  69  * </ul>

  70  * <p>
  71  * If the annotated JavaBean property is the sole class member being
  72  * mapped to XML Schema construct, then the class is mapped to a
  73  * simple type.
  74  *
  75  * If there are additional JavaBean properties (other than the
  76  * JavaBean property annotated with <tt>@XmlValue</tt> annotation)
  77  * that are mapped to XML attributes, then the class is mapped to a
  78  * complex type with simpleContent.
  79  * </p>
  80  *
  81  * <p> <b> Example 1: </b> Map a class to XML Schema simpleType</p>
  82  *
  83  *   <pre>
  84  *
  85  *     // Example 1: Code fragment
  86  *     public class USPrice {
  87  *         @XmlValue
  88  *         public java.math.BigDecimal price;
  89  *     }
  90  *
  91  *     &lt;!-- Example 1: XML Schema fragment --&gt;
  92  *     &lt;xs:simpleType name="USPrice"&gt;
  93  *       &lt;xs:restriction base="xs:decimal"/&gt;
  94  *     &lt;/xs:simpleType&gt;
  95  *
  96  *   </pre>
  97  *
  98  * <p><b> Example 2: </b> Map a class to XML Schema complexType with
  99  *        with simpleContent.</p>
 100  *
 101  *   <pre>
 102  *
 103  *   // Example 2: Code fragment
 104  *   public class InternationalPrice {
 105  *       @XmlValue
 106  *       public java.math.BigDecimal price;
 107  *
 108  *       @XmlAttribute
 109  *       public String currency;
 110  *   }
 111  *
 112  *   &lt;!-- Example 2: XML Schema fragment --&gt;
 113  *   &lt;xs:complexType name="InternationalPrice"&gt;
 114  *     &lt;xs:simpleContent&gt;
 115  *       &lt;xs:extension base="xs:decimal"&gt;
 116  *         &lt;xs:attribute name="currency" type="xs:string"/&gt;
 117  *       &lt;/xs:extension&gt;
 118  *     &lt;/xs:simpleContent&gt;
 119  *   &lt;/xs:complexType&gt;
 120  *
 121  *   </pre>

 122  *
 123  * @author Sekhar Vajjhala, Sun Microsystems, Inc.
 124  * @see XmlType
 125  * @since 1.6, JAXB 2.0
 126  */
 127 
 128 @Retention(RUNTIME) @Target({FIELD, METHOD})
 129 public @interface XmlValue {}
< prev index next >