test/com/sun/javadoc/testHtmlDefinitionListTag/pkg1/C5.java

Fri, 27 Feb 2009 18:57:17 -0800

author
bpatel
date
Fri, 27 Feb 2009 18:57:17 -0800
changeset 233
5240b1120530
child 554
9d9f26857129
permissions
-rw-r--r--

6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
Reviewed-by: jjg

bpatel@233 1 /*
bpatel@233 2 * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
bpatel@233 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bpatel@233 4 *
bpatel@233 5 * This code is free software; you can redistribute it and/or modify it
bpatel@233 6 * under the terms of the GNU General Public License version 2 only, as
bpatel@233 7 * published by the Free Software Foundation. Sun designates this
bpatel@233 8 * particular file as subject to the "Classpath" exception as provided
bpatel@233 9 * by Sun in the LICENSE file that accompanied this code.
bpatel@233 10 *
bpatel@233 11 * This code is distributed in the hope that it will be useful, but WITHOUT
bpatel@233 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bpatel@233 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
bpatel@233 14 * version 2 for more details (a copy is included in the LICENSE file that
bpatel@233 15 * accompanied this code).
bpatel@233 16 *
bpatel@233 17 * You should have received a copy of the GNU General Public License version
bpatel@233 18 * 2 along with this work; if not, write to the Free Software Foundation,
bpatel@233 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bpatel@233 20 *
bpatel@233 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
bpatel@233 22 * CA 95054 USA or visit www.sun.com if you need additional information or
bpatel@233 23 * have any questions.
bpatel@233 24 */
bpatel@233 25
bpatel@233 26 package pkg1;
bpatel@233 27
bpatel@233 28 import java.io.Serializable;
bpatel@233 29
bpatel@233 30 /**
bpatel@233 31 * Test for Serializable
bpatel@233 32 *
bpatel@233 33 * @author Bhavesh Patel
bpatel@233 34 * @deprecated This class is no longer used.
bpatel@233 35 */
bpatel@233 36 @Deprecated
bpatel@233 37 public abstract class C5 implements Serializable {
bpatel@233 38
bpatel@233 39 /**
bpatel@233 40 * The name for this class.
bpatel@233 41 *
bpatel@233 42 * @serial
bpatel@233 43 */
bpatel@233 44 private String name;
bpatel@233 45
bpatel@233 46 /**
bpatel@233 47 * @serial
bpatel@233 48 */
bpatel@233 49 private int publicKey;
bpatel@233 50
bpatel@233 51 /**
bpatel@233 52 * Constructor for serialization only.
bpatel@233 53 */
bpatel@233 54 protected C5() {
bpatel@233 55
bpatel@233 56 }
bpatel@233 57
bpatel@233 58 /**
bpatel@233 59 * Prints general information.
bpatel@233 60 *
bpatel@233 61 */
bpatel@233 62 public void printInfo() {
bpatel@233 63
bpatel@233 64 }
bpatel@233 65 }

mercurial