langtools/test/com/sun/javadoc/testHtmlVersion/pkg1/ProtectedInnerClass.java
author bpatel
Mon, 13 Apr 2015 18:05:23 -0700
changeset 29957 7740f9657f56
child 32337 c9d3ab9f601c
permissions -rw-r--r--
8072945: Javadoc should generate valid and compliant HTML5 output Reviewed-by: jjg, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     1
/*
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     4
 *
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    10
 *
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    15
 * accompanied this code).
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    16
 *
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    20
 *
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    23
 * questions.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    24
 */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    25
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    26
package pkg1;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    27
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    28
import java.io.*;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    29
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    30
/**
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    31
 * A test class where outer class is package private and the inner class is
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    32
 * protected.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    33
 *
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    34
 * @author      Bhavesh Patel
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    35
 */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    36
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    37
class ProtectedInnerClass {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    38
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    39
    protected static class ProInnerClass implements java.io.Serializable {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    40
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    41
        public final int SERIALIZABLE_CONSTANT1 = 1;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    42
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    43
        /**
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    44
         * @param s ObjectInputStream.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    45
         * @throws IOException when there is an I/O error.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    46
         * @serial
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    47
         */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    48
        private void readObject(ObjectInputStream s) throws IOException {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    49
        }
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    50
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    51
        /**
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    52
         * @param s ObjectOutputStream.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    53
         * @throws IOException when there is an I/O error.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    54
         * @serial
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    55
         */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    56
        private void writeObject(ObjectOutputStream s) throws IOException {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    57
        }
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    58
    }
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents:
diff changeset
    59
}