test/com/sun/javadoc/testProfiles/pkg2/Class1Pkg2.java

Mon, 21 Jan 2013 00:45:35 -0500

author
bpatel
date
Mon, 21 Jan 2013 00:45:35 -0500
changeset 1568
5f0731e4e5e6
child 1999
7993cfab8610
permissions
-rw-r--r--

8006124: javadoc/doclet should be updated to support profiles
Reviewed-by: jjg

bpatel@1568 1 /*
bpatel@1568 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
bpatel@1568 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bpatel@1568 4 *
bpatel@1568 5 * This code is free software; you can redistribute it and/or modify it
bpatel@1568 6 * under the terms of the GNU General Public License version 2 only, as
bpatel@1568 7 * published by the Free Software Foundation.
bpatel@1568 8 *
bpatel@1568 9 * This code is distributed in the hope that it will be useful, but WITHOUT
bpatel@1568 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bpatel@1568 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
bpatel@1568 12 * version 2 for more details (a copy is included in the LICENSE file that
bpatel@1568 13 * accompanied this code).
bpatel@1568 14 *
bpatel@1568 15 * You should have received a copy of the GNU General Public License version
bpatel@1568 16 * 2 along with this work; if not, write to the Free Software Foundation,
bpatel@1568 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bpatel@1568 18 *
bpatel@1568 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bpatel@1568 20 * or visit www.oracle.com if you need additional information or have any
bpatel@1568 21 * questions.
bpatel@1568 22 */
bpatel@1568 23
bpatel@1568 24 package pkg2;
bpatel@1568 25
bpatel@1568 26 /**
bpatel@1568 27 * Another test class.
bpatel@1568 28 *
bpatel@1568 29 * @author Bhavesh Patel
bpatel@1568 30 */
bpatel@1568 31 public class Class1Pkg2 {
bpatel@1568 32
bpatel@1568 33 /**
bpatel@1568 34 * A sample enum.
bpatel@1568 35 */
bpatel@1568 36 public static enum ModalExclusionType {
bpatel@1568 37 /**
bpatel@1568 38 * Test comment.
bpatel@1568 39 */
bpatel@1568 40 NO_EXCLUDE,
bpatel@1568 41 /**
bpatel@1568 42 * Another comment.
bpatel@1568 43 */
bpatel@1568 44 APPLICATION_EXCLUDE
bpatel@1568 45 };
bpatel@1568 46
bpatel@1568 47 /**
bpatel@1568 48 * A string constant.
bpatel@1568 49 */
bpatel@1568 50 public static final String CONSTANT1 = "C2";
bpatel@1568 51 }

mercurial