bpatel@1568: /* bpatel@1568: * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. bpatel@1568: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. bpatel@1568: * bpatel@1568: * This code is free software; you can redistribute it and/or modify it bpatel@1568: * under the terms of the GNU General Public License version 2 only, as bpatel@1568: * published by the Free Software Foundation. bpatel@1568: * bpatel@1568: * This code is distributed in the hope that it will be useful, but WITHOUT bpatel@1568: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or bpatel@1568: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License bpatel@1568: * version 2 for more details (a copy is included in the LICENSE file that bpatel@1568: * accompanied this code). bpatel@1568: * bpatel@1568: * You should have received a copy of the GNU General Public License version bpatel@1568: * 2 along with this work; if not, write to the Free Software Foundation, bpatel@1568: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. bpatel@1568: * bpatel@1568: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA bpatel@1568: * or visit www.oracle.com if you need additional information or have any bpatel@1568: * questions. bpatel@1568: */ bpatel@1568: bpatel@1568: package pkg2; bpatel@1568: bpatel@1568: /** bpatel@1568: * Another test class. bpatel@1568: * bpatel@1568: * @author Bhavesh Patel bpatel@1568: */ bpatel@1568: public class Class1Pkg2 { bpatel@1568: bpatel@1568: /** bpatel@1568: * A sample enum. bpatel@1568: */ bpatel@1568: public static enum ModalExclusionType { bpatel@1568: /** bpatel@1568: * Test comment. bpatel@1568: */ bpatel@1568: NO_EXCLUDE, bpatel@1568: /** bpatel@1568: * Another comment. bpatel@1568: */ bpatel@1568: APPLICATION_EXCLUDE bpatel@1568: }; bpatel@1568: bpatel@1568: /** bpatel@1568: * A string constant. bpatel@1568: */ bpatel@1568: public static final String CONSTANT1 = "C2"; bpatel@1568: }