AI2 Component  (Version nb184)
ActionElement.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 
29 @Retention(RetentionPolicy.RUNTIME)
30 @Target(ElementType.TYPE)
31 public @interface ActionElement {
32 
44  String name();
45 }
com.google.appinventor.components.annotations.androidmanifest.ActionElement
Definition: ActionElement.java:31