AI2 Component  (Version nb184)
MetaDataElement.java
Go to the documentation of this file.
1 // -*- mode: java; c-basic-offset: 2; -*-
2 // Copyright 2016 MIT, All rights reserved
3 // Released under the Apache License, Version 2.0
4 // http://www.apache.org/licenses/LICENSE-2.0
5 
6 package com.google.appinventor.components.annotations.androidmanifest;
7 
8 import java.lang.annotation.ElementType;
9 import java.lang.annotation.Retention;
10 import java.lang.annotation.RetentionPolicy;
11 import java.lang.annotation.Target;
12 
42 @Retention(RetentionPolicy.RUNTIME)
43 @Target(ElementType.TYPE)
44 public @interface MetaDataElement {
45 
54  String name();
55 
63  String resource() default "";
64 
88  String value() default "";
89 }
com.google.appinventor.components.annotations.androidmanifest.MetaDataElement
Definition: MetaDataElement.java:44