AI2 Component  (Version nb184)
DataElement.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 
36 @Retention(RetentionPolicy.RUNTIME)
37 @Target(ElementType.TYPE)
38 public @interface DataElement {
39 
49  String scheme() default "";
50 
61  String host() default "";
62 
69  String port() default "";
70 
77  String path() default "";
78 
85  String pathPrefix() default "";
86 
101  String pathPattern() default "";
102 
111  String mimeType() default "";
112 }
com.google.appinventor.components.annotations.androidmanifest.DataElement
Definition: DataElement.java:38