< prev index next >

src/java.xml.bind/share/classes/javax/xml/bind/JAXBIntrospector.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -49,11 +49,11 @@
      * <p>Return true if <code>object</code> represents a JAXB element.</p>
      * <p>Parameter <code>object</code> is a JAXB element for following cases:
      * <ol>
      *   <li>It is an instance of <code>javax.xml.bind.JAXBElement</code>.</li>
      *   <li>The class of <code>object</code> is annotated with
-     *       <code>&#64XmlRootElement</code>.
+     *       <code>@XmlRootElement</code>.
      *   </li>
      * </ol>
      *
      * @see #getElementName(Object)
      */

@@ -72,11 +72,11 @@
     /**
      * <p>Get the element value of a JAXB element.</p>
      *
      * <p>Convenience method to abstract whether working with either
      *    a javax.xml.bind.JAXBElement instance or an instance of
-     *    <tt>&#64XmlRootElement</tt> annotated Java class.</p>
+     *    <tt>@XmlRootElement</tt> annotated Java class.</p>
      *
      * @param jaxbElement  object that #isElement(Object) returns true.
      *
      * @return The element value of the <code>jaxbElement</code>.
      */
< prev index next >