175aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye/*
275aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * Copyright (C) 2014 The Android Open Source Project
375aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye *
475aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * Licensed under the Apache License, Version 2.0 (the "License");
575aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * you may not use this file except in compliance with the License.
675aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * You may obtain a copy of the License at
775aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye *
875aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye *      http://www.apache.org/licenses/LICENSE-2.0
975aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye *
1075aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * Unless required by applicable law or agreed to in writing, software
1175aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * distributed under the License is distributed on an "AS IS" BASIS,
1275aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1375aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * See the License for the specific language governing permissions and
1475aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * limitations under the License.
1575aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye */
1675aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyepackage android.support.annotation;
1775aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye
1875aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport java.lang.annotation.Documented;
1975aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport java.lang.annotation.Retention;
2075aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport java.lang.annotation.Target;
2175aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye
2275aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport static java.lang.annotation.ElementType.FIELD;
239b2e27b330a5047774442f112efd8ba40b046c39Tor Norbyeimport static java.lang.annotation.ElementType.LOCAL_VARIABLE;
2475aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport static java.lang.annotation.ElementType.METHOD;
2575aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyeimport static java.lang.annotation.ElementType.PARAMETER;
269b2e27b330a5047774442f112efd8ba40b046c39Tor Norbyeimport static java.lang.annotation.RetentionPolicy.CLASS;
2775aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye
2875aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye/**
2975aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * Denotes that an integer parameter, field or method return value is expected
3075aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye * to be an attribute reference (e.g. {@link android.R.attr#action}).
3175aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye */
3275aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye@Documented
339b2e27b330a5047774442f112efd8ba40b046c39Tor Norbye@Retention(CLASS)
349b2e27b330a5047774442f112efd8ba40b046c39Tor Norbye@Target({METHOD, PARAMETER, FIELD, LOCAL_VARIABLE})
3575aea14c26565d3fde46c4ce410f5c384c42162cTor Norbyepublic @interface AttrRes {
3675aea14c26565d3fde46c4ce410f5c384c42162cTor Norbye}
37