110178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki/*
210178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * Copyright (C) 2011 The Android Open Source Project
310178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki *
410178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * Licensed under the Apache License, Version 2.0 (the "License");
510178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * you may not use this file except in compliance with the License.
610178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * You may obtain a copy of the License at
710178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki *
810178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki *      http://www.apache.org/licenses/LICENSE-2.0
910178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki *
1010178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * Unless required by applicable law or agreed to in writing, software
1110178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * distributed under the License is distributed on an "AS IS" BASIS,
1210178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1310178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * See the License for the specific language governing permissions and
1410178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * limitations under the License.
1510178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki */
1610178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki
1710178e5e0b9de566e04508b624a89860c61787d6Makoto Onukipackage com.android.providers.contacts.util;
1810178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki
1910178e5e0b9de566e04508b624a89860c61787d6Makoto Onukiimport java.lang.annotation.ElementType;
2010178e5e0b9de566e04508b624a89860c61787d6Makoto Onukiimport java.lang.annotation.Retention;
2110178e5e0b9de566e04508b624a89860c61787d6Makoto Onukiimport java.lang.annotation.RetentionPolicy;
2210178e5e0b9de566e04508b624a89860c61787d6Makoto Onukiimport java.lang.annotation.Target;
2310178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki
2410178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki/**
2510178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * Denotes that the class, constructor, method or field is used by tests and therefore cannot be
2610178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki * removed by tools like ProGuard.
2710178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki */
2810178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki@Retention(RetentionPolicy.CLASS)
2910178e5e0b9de566e04508b624a89860c61787d6Makoto Onuki@Target({ElementType.TYPE, ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.FIELD})
3010178e5e0b9de566e04508b624a89860c61787d6Makoto Onukipublic @interface NeededForTesting {}
31