Merge "Allow marking fields with @TargetApi(XX)" into oc-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
708d118458
@@ -16,6 +16,7 @@
|
||||
package android.annotation;
|
||||
|
||||
import static java.lang.annotation.ElementType.CONSTRUCTOR;
|
||||
import static java.lang.annotation.ElementType.FIELD;
|
||||
import static java.lang.annotation.ElementType.METHOD;
|
||||
import static java.lang.annotation.ElementType.TYPE;
|
||||
|
||||
@@ -25,7 +26,7 @@ import java.lang.annotation.Target;
|
||||
|
||||
/** Indicates that Lint should treat this type as targeting a given API level, no matter what the
|
||||
project target is. */
|
||||
@Target({TYPE, METHOD, CONSTRUCTOR})
|
||||
@Target({TYPE, METHOD, CONSTRUCTOR, FIELD})
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
public @interface TargetApi {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user