< prev index next >

langtools/test/tools/javap/typeAnnotations/Wildcards.java

Print this page




  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 
  24 import java.io.*;
  25 import com.sun.tools.classfile.*;
  26 
  27 /*
  28  * @test Wildcards
  29  * @bug 6843077
  30  * @summary test that annotations target wildcards get emitted to classfile
  31  * @modules jdk.compiler/com.sun.tools.classfile
  32  */
  33 public class Wildcards {
  34     public static void main(String[] args) throws Exception {
  35         new Wildcards().run();
  36     }
  37 
  38     public void run() throws Exception {
  39         File javaFile = writeTestFile();
  40         File classFile = compileTestFile(javaFile);
  41 
  42         ClassFile cf = ClassFile.read(classFile);
  43         test(cf);
  44         for (Field f : cf.fields) {
  45             test(cf, f);
  46         }
  47         for (Method m: cf.methods) {
  48             test(cf, m);
  49         }
  50 
  51         countAnnotations();




  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 
  24 import java.io.*;
  25 import com.sun.tools.classfile.*;
  26 
  27 /*
  28  * @test Wildcards
  29  * @bug 6843077
  30  * @summary test that annotations target wildcards get emitted to classfile
  31  * @modules jdk.jdeps/com.sun.tools.classfile
  32  */
  33 public class Wildcards {
  34     public static void main(String[] args) throws Exception {
  35         new Wildcards().run();
  36     }
  37 
  38     public void run() throws Exception {
  39         File javaFile = writeTestFile();
  40         File classFile = compileTestFile(javaFile);
  41 
  42         ClassFile cf = ClassFile.read(classFile);
  43         test(cf);
  44         for (Field f : cf.fields) {
  45             test(cf, f);
  46         }
  47         for (Method m: cf.methods) {
  48             test(cf, m);
  49         }
  50 
  51         countAnnotations();


< prev index next >