RequiresPermission.java
1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package android.support.annotation;
import java.lang.annotation.Annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.CLASS)
@Target({java.lang.annotation.ElementType.ANNOTATION_TYPE, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.CONSTRUCTOR, java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.PARAMETER})
public @interface RequiresPermission
{
String[] allOf() default {};
String[] anyOf() default {};
boolean conditional() default false;
String value() default "";
@Target({java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.PARAMETER})
public static @interface Read
{
RequiresPermission value() default @RequiresPermission;
}
@Target({java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.PARAMETER})
public static @interface Write
{
RequiresPermission value() default @RequiresPermission;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/annotation/RequiresPermission.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/