AI2 Component  (Version nb184)
PathPermissionElement.java
Go to the documentation of this file.
1 // -*- mode: java; c-basic-offset: 2; -*-
2 // Copyright 2020 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 
30 @Retention(RetentionPolicy.RUNTIME)
31 @Target(ElementType.TYPE)
32 public @interface PathPermissionElement {
33 
41  String path() default "";
42 
49  String pathPrefix() default "";
50 
65  String pathPattern() default "";
66 
75  String permission() default "";
76 
82  String readPermission() default "";
83 
90  String writePermission() default "";
91 }
com.google.appinventor.components.annotations.androidmanifest.PathPermissionElement
Definition: PathPermissionElement.java:32