< prev index next >

langtools/test/tools/javap/typeAnnotations/JSR175Annotations.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 JSR175Annotations
  29  * @bug 6843077
  30  * @summary test that only type annotations are recorded as such in classfile
  31  * @modules jdk.compiler/com.sun.tools.classfile
  32  */
  33 
  34 public class JSR175Annotations {
  35     public static void main(String[] args) throws Exception {
  36         new JSR175Annotations().run();
  37     }
  38 
  39     public void run() throws Exception {
  40         File javaFile = writeTestFile();
  41         File classFile = compileTestFile(javaFile);
  42 
  43         ClassFile cf = ClassFile.read(classFile);
  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 JSR175Annotations
  29  * @bug 6843077
  30  * @summary test that only type annotations are recorded as such in classfile
  31  * @modules jdk.jdeps/com.sun.tools.classfile
  32  */
  33 
  34 public class JSR175Annotations {
  35     public static void main(String[] args) throws Exception {
  36         new JSR175Annotations().run();
  37     }
  38 
  39     public void run() throws Exception {
  40         File javaFile = writeTestFile();
  41         File classFile = compileTestFile(javaFile);
  42 
  43         ClassFile cf = ClassFile.read(classFile);
  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 >