1/*
2 * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24package pkg;
25
26import java.util.*;
27import java.lang.*;
28import java.io.*;
29import java.util.zip.*;
30
31public abstract class TestAbstractClass extends TestSuperSuperClass
32    implements TestInterfaceForAbstractClass {
33
34  /**
35   * Test 1 passes.
36   * @param p1 Test 2 passes.
37   * @param p2 Test 3 passes.
38   * @return a string.
39   * @throws java.io.IOException Test 4 passes.
40   * @throws java.lang.NullPointerException Test 5 passes.
41   * @see java.lang.String
42   * @see java.util.Vector
43   */
44  public String testAbstractClass_method1(int p1, int p2) throws java.io.IOException,
45java.lang.NullPointerException {
46      return null;
47  }
48
49  /**
50   * Test 6 passes.
51   * @param p1 Test 7 passes.
52   * @param p2 Test 8 passes.
53   * @return a string.
54   * @throws java.io.IOException Test 9 passes.
55   * @throws java.lang.NullPointerException Test 10 passes
56   * @see java.lang.String
57   * @see java.util.Vector
58   */
59  public String testAbstractClass_method2(int p1, int p2) throws java.io.IOException,
60java.lang.NullPointerException {
61      return null;
62  }
63
64    /**
65     * Test 31 passes.
66     * @param <Q> Test 33 passes.
67     * @param x2 Test 35 passes.
68     * @throws java.io.IOException Test 37 passes.
69     * @throws java.util.zip.ZipException Test 39 passes.
70     */
71    public <P,Q> String testSuperSuperMethod2(int x1, int x2) {
72        return null;
73    }
74}
75