blob: 1b40400a4a0af7958d9c7371e61a9d7b8212ec58 [file] [log] [blame]
/*
* Copyright 2003 Sun Microsystems, Inc. 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.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package pkg1;
/**
* Result: {@value TEST_2_PASSES}
*/
public class Class1 {
/**
* Result: {@value}
*/
public static final String TEST_1_PASSES = "Test 1 passes";
public static final String TEST_2_PASSES = "Test 2 passes";
public static final String TEST_3_PASSES = "Test 3 passes";
public static final String TEST_4_PASSES = "Test 4 passes";
public static final String TEST_5_PASSES = "Test 5 passes";
public static final String TEST_6_PASSES = "Test 6 passes";
public static final String TEST_7_PASSES = "Test 7 passes";
public static final String TEST_8_PASSES = "Test 8 passes";
public static final String TEST_9_PASSES = "Test 9 passes";
public static final String TEST_10_PASSES = "Test 10 passes";
public static final String TEST_11_PASSES = "Test 11 passes";
/**
* Result: {@value TEST_3_PASSES}
*/
public int field;
/**
* Result: {@value TEST_4_PASSES}
*/
public Class1() {}
/**
* Result: {@value TEST_5_PASSES}
*/
public void method() {}
/**
* Result: {@value pkg1.Class1#TEST_6_PASSES}
*/
public class NestedClass{}
}