test/com/sun/javadoc/testTagInheritence/pkg/TestAbstractClass.java

Tue, 25 May 2010 15:54:51 -0700

author
ohair
date
Tue, 25 May 2010 15:54:51 -0700
changeset 554
9d9f26857129
parent 1
9a66ca7c79fa
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

     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  */
    24 package pkg;
    26 import java.util.*;
    27 import java.lang.*;
    28 import java.io.*;
    29 import java.util.zip.*;
    31 public abstract class TestAbstractClass extends TestSuperSuperClass
    32     implements TestInterfaceForAbstractClass {
    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,
    45 java.lang.NullPointerException {
    46       return null;
    47   }
    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,
    60 java.lang.NullPointerException {
    61       return null;
    62   }
    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 }

mercurial