< prev index next >

test/jdk/jdk/jfr/api/metadata/annotations/TestDynamicAnnotation.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.api.metadata.annotations;
  27 
  28 import java.util.HashMap;
  29 import java.util.Map;
  30 
  31 import jdk.jfr.AnnotationElement;
  32 import jdk.jfr.MetadataDefinition;
  33 
  34 /*
  35  * @test
  36  * @key jfr

  37  * @library /test/lib
  38  * @run main/othervm jdk.jfr.api.metadata.annotations.TestDynamicAnnotation
  39  */
  40 
  41 
  42 public class TestDynamicAnnotation {
  43     @MetadataDefinition
  44     @interface CustomAnnotation {
  45         String value();
  46         int intValue();
  47     }
  48 
  49     public static void main(String[] args) throws Exception {
  50         Map<String, Object> values = new HashMap<>();
  51         values.put("value", "MyValue");
  52         values.put("intValue", 1);
  53         new AnnotationElement(CustomAnnotation.class, values);
  54     }
  55 }


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.api.metadata.annotations;
  27 
  28 import java.util.HashMap;
  29 import java.util.Map;
  30 
  31 import jdk.jfr.AnnotationElement;
  32 import jdk.jfr.MetadataDefinition;
  33 
  34 /**
  35  * @test
  36  * @key jfr
  37  * @requires vm.hasJFR
  38  * @library /test/lib
  39  * @run main/othervm jdk.jfr.api.metadata.annotations.TestDynamicAnnotation
  40  */
  41 
  42 
  43 public class TestDynamicAnnotation {
  44     @MetadataDefinition
  45     @interface CustomAnnotation {
  46         String value();
  47         int intValue();
  48     }
  49 
  50     public static void main(String[] args) throws Exception {
  51         Map<String, Object> values = new HashMap<>();
  52         values.put("value", "MyValue");
  53         values.put("intValue", 1);
  54         new AnnotationElement(CustomAnnotation.class, values);
  55     }
  56 }
< prev index next >