< prev index next >

src/java.xml.ws/share/classes/javax/xml/ws/Holder.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 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

@@ -26,11 +26,11 @@
 package javax.xml.ws;
 
 import java.io.Serializable;
 
 /**
- * Holds a value of type <code>T</code>.
+ * Holds a value of type {@code T}.
  *
  * @since 1.6, JAX-WS 2.0
  */
 public final class Holder<T> implements Serializable {
 

@@ -40,11 +40,11 @@
      * The value contained in the holder.
      */
     public T value;
 
     /**
-     * Creates a new holder with a <code>null</code> value.
+     * Creates a new holder with a {@code null} value.
      */
     public Holder() {
     }
 
     /**
< prev index next >