langtools/test/jdk/javadoc/doclet/testUseOption/pkg1/C1.java
changeset 36705 890c250d8da8
parent 35426 374342e56a56
equal deleted inserted replaced
36503:4a95f4b1bd8b 36705:890c250d8da8
     1 /*
     1 /*
     2  * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    45 
    45 
    46     public List<UsedClass> methodInC1ReturningType() {
    46     public List<UsedClass> methodInC1ReturningType() {
    47         return null;
    47         return null;
    48     }
    48     }
    49 
    49 
       
    50     public void methodInC1ThrowsThrowable() throws UsedThrowable {
       
    51     }
       
    52 
    50     /*
    53     /*
    51      * this must not appear anywhere.
    54      * this must not appear anywhere.
    52      */
    55      */
    53     UsedClass methodInC1Protected(List<UsedClass> p){
    56     UsedClass methodInC1Protected(List<UsedClass> p){
    54         return p;
    57         return p.get(0);
    55     }
    58     }
    56 }
    59 }