A.java revision 3337:cba09a2e6ae9
1/*
2 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24package pkg1;
25
26public class A {
27    /**
28     * A visible field.
29     */
30    public A visibleField;
31
32    /**
33     * An invisible field.
34     * @hidden
35     */
36    public A invisibleField;
37
38    /**
39     * A visible method.
40     */
41    public void visibleMethod() {}
42
43    /**
44     * An invisible method.
45     * @hidden
46     */
47    public void invisibleMethod() {}
48
49    /**
50     * A visible inner class.
51     */
52    public static class VisibleInner extends A {
53        /**
54         * An invisible constructor
55         * @hidden invisible
56         */
57        public VisibleInner() {}
58    }
59
60    /**
61     * An invisible inner class.
62     * @hidden
63     */
64    public static class InvisibleInner extends A {}
65
66    /**
67     * A visible inner class, extending an invisible class.
68     */
69    public static class VisibleInnerExtendsInvisibleInner extends InvisibleInner {}
70
71    /**
72     * An invisible inner class extending a visible class.
73     * @hidden
74     */
75    public static class InvisibleInnerExtendsVisibleInner extends InvisibleInner {}
76
77}
78