< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2012, 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 --- 1,7 ---- /* ! * 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,36 **** package javax.xml.ws; import java.io.Serializable; /** ! * Holds a value of type <code>T</code>. * * @since 1.6, JAX-WS 2.0 */ public final class Holder<T> implements Serializable { --- 26,36 ---- package javax.xml.ws; import java.io.Serializable; /** ! * Holds a value of type {@code T}. * * @since 1.6, JAX-WS 2.0 */ public final class Holder<T> implements Serializable {
*** 40,50 **** * The value contained in the holder. */ public T value; /** ! * Creates a new holder with a <code>null</code> value. */ public Holder() { } /** --- 40,50 ---- * The value contained in the holder. */ public T value; /** ! * Creates a new holder with a {@code null} value. */ public Holder() { } /**
< prev index next >