C2.java revision 3233:b5d08bc0d224
123353Sdfr/*
223353Sdfr * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
323353Sdfr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
423353Sdfr *
523353Sdfr * This code is free software; you can redistribute it and/or modify it
623353Sdfr * under the terms of the GNU General Public License version 2 only, as
723353Sdfr * published by the Free Software Foundation.
823353Sdfr *
923353Sdfr * This code is distributed in the hope that it will be useful, but WITHOUT
1023353Sdfr * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1123353Sdfr * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1223353Sdfr * version 2 for more details (a copy is included in the LICENSE file that
1323353Sdfr * accompanied this code).
1423353Sdfr *
1523353Sdfr * You should have received a copy of the GNU General Public License version
1623353Sdfr * 2 along with this work; if not, write to the Free Software Foundation,
1723353Sdfr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1823353Sdfr *
1923353Sdfr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2023353Sdfr * or visit www.oracle.com if you need additional information or have any
2123353Sdfr * questions.
2223353Sdfr */
2323353Sdfr
2423353Sdfr/**
2523353Sdfr * Another test class.
2623353Sdfr *
2723353Sdfr * @author Bhavesh Patel
2823353Sdfr */
2950476Speterpublic class C2 {
3023353Sdfr
3123353Sdfr    public static enum ModalExclusionType {
32206622Suqs        /**
3323353Sdfr         * Test comment.
3423353Sdfr         */
3523353Sdfr        NO_EXCLUDE,
3623353Sdfr        /**
3723353Sdfr         * Another comment.
3884306Sru         */
3984306Sru        APPLICATION_EXCLUDE
4023353Sdfr    };
4123353Sdfr
4223353Sdfr    /**
4323353Sdfr     * A string constant.
4423353Sdfr     */
4523353Sdfr    public static final String CONSTANT1 = "C2";
4670466Sru
47115440Shmp    /**
48140931Sru     * A sample method.
49115440Shmp     *
50140931Sru     * @param param some parameter.
51115440Shmp     */
52140931Sru    public void method(String param) {
5323353Sdfr
5423353Sdfr    }
55107383Sru}
56107383Sru