I1.java revision 3233:b5d08bc0d224
1129203Scognet/*
2129203Scognet * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
3129203Scognet * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4129203Scognet *
5129203Scognet * This code is free software; you can redistribute it and/or modify it
6129203Scognet * under the terms of the GNU General Public License version 2 only, as
7129203Scognet * published by the Free Software Foundation.
8129203Scognet *
9129203Scognet * This code is distributed in the hope that it will be useful, but WITHOUT
10129203Scognet * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11129203Scognet * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12129203Scognet * version 2 for more details (a copy is included in the LICENSE file that
13129203Scognet * accompanied this code).
14129203Scognet *
15129203Scognet * You should have received a copy of the GNU General Public License version
16129203Scognet * 2 along with this work; if not, write to the Free Software Foundation,
17129203Scognet * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18129203Scognet *
19129203Scognet * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20129203Scognet * or visit www.oracle.com if you need additional information or have any
21129203Scognet * questions.
22129203Scognet */
23129203Scognet
24129203Scognetpackage pkg1;
25129203Scognet
26129203Scognet/**
27129203Scognet * A sample interface used to test table tags.
28129203Scognet *
29129203Scognet * @author Bhavesh Patel
30129203Scognet */
31129203Scognetpublic interface I1 {
32129203Scognet
33129203Scognet    /**
34129203Scognet     * A test method.
35129203Scognet     *
36129203Scognet     * @param a blah.
37129203Scognet     * @param b blah.
38129203Scognet     */
39129203Scognet    void method1(int a, int b);
40129203Scognet
41129203Scognet    /**
42129203Scognet     * Another test method.
43129203Scognet     *
44129203Scognet     * @param c blah.
45129203Scognet     */
46129203Scognet    void method2(int c);
47129203Scognet
48129203Scognet}
49129203Scognet