AI2 Component  (Version nb184)
SimpleBroadcastReceiver.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;
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 
20 @Retention(RetentionPolicy.RUNTIME)
21 @Target(ElementType.TYPE)
22 @Deprecated
23 public @interface SimpleBroadcastReceiver {
24 
28  String className() default "";
29 
33  String actions() default "";
34 }
com.google.appinventor.components.annotations.SimpleBroadcastReceiver
Definition: SimpleBroadcastReceiver.java:23
com.google.appinventor.components.annotations.SimpleBroadcastReceiver.className
String className() default ""
com.google.appinventor.components.annotations.SimpleBroadcastReceiver.actions
String actions() default ""