1142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong/*
2142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * Copyright (C) 2011 The Android Open Source Project
3142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong *
4142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * Licensed under the Apache License, Version 2.0 (the "License");
5142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * you may not use this file except in compliance with the License.
6142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * You may obtain a copy of the License at
7142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong *
8142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong *      http://www.apache.org/licenses/LICENSE-2.0
9142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong *
10142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * Unless required by applicable law or agreed to in writing, software
11142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * distributed under the License is distributed on an "AS IS" BASIS,
12142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * See the License for the specific language governing permissions and
14142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * limitations under the License.
15142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong */
16142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong
17a907c122ccec649c6cedf3a45b1c426a5fca932eAngus Kongpackage com.android.camera;
18142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong
19142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kongimport java.lang.annotation.ElementType;
20142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kongimport java.lang.annotation.Retention;
21142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kongimport java.lang.annotation.RetentionPolicy;
22142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kongimport java.lang.annotation.Target;
23142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong
24142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong
25142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong/**
26142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong * Interface for OnClickAttr annotation.
27142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong */
28142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong@Retention(RetentionPolicy.RUNTIME)
29142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong@Target(ElementType.METHOD)
30142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kongpublic @interface OnClickAttr {
31142402d57c1689c1342d096c976b9b0826f8ce1aAngus Kong}
32