Path: blob/master/test/langtools/jdk/javadoc/doclet/testConstructors/pkg1/Outer.java
40983 views
/*1* Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223package pkg1;2425/**26* Test link tag.27* Link: {@link pkg1.Outer.Inner#Inner()}, {@link pkg1.Outer#Outer(int)}, {@link pkg1.Outer.Inner.NestedInner#NestedInner(int)}28*29* @see Outer.Inner#Inner()30* @see Outer.Inner#Inner(int)31* @see Outer.Inner.NestedInner#NestedInner()32* @see Outer.Inner.NestedInner#NestedInner(int)33* @see Outer#Outer()34* @see Outer#Outer(int)35*/36public class Outer {3738/**39* An outer constructor.40*/41public Outer() {42}4344/**45* Another outer constructor.46*/47public Outer(int i) {48}4950/**51* A nested class.52*/53public class Inner {5455/**56* An inner constructor.57*/58public Inner() {59}6061/**62* Another inner constructor.63*/64public Inner(int i) {65}6667/**68* A nested inner class.69*/70public class NestedInner {7172/**73* A nested inner constructor.74*/75public NestedInner() {76}7778/**79* Another nested inner constructor.80*/81public NestedInner(int i) {82}83}84}85}868788