1bc101806249eb883f89c4a770a8c27f9ac315837Raphael/*
2bc101806249eb883f89c4a770a8c27f9ac315837Raphael * Copyright (C) 2010 The Android Open Source Project
3bc101806249eb883f89c4a770a8c27f9ac315837Raphael *
4bc101806249eb883f89c4a770a8c27f9ac315837Raphael * Licensed under the Apache License, Version 2.0 (the "License");
5bc101806249eb883f89c4a770a8c27f9ac315837Raphael * you may not use this file except in compliance with the License.
6bc101806249eb883f89c4a770a8c27f9ac315837Raphael * You may obtain a copy of the License at
7bc101806249eb883f89c4a770a8c27f9ac315837Raphael *
8bc101806249eb883f89c4a770a8c27f9ac315837Raphael *      http://www.apache.org/licenses/LICENSE-2.0
9bc101806249eb883f89c4a770a8c27f9ac315837Raphael *
10bc101806249eb883f89c4a770a8c27f9ac315837Raphael * Unless required by applicable law or agreed to in writing, software
11bc101806249eb883f89c4a770a8c27f9ac315837Raphael * distributed under the License is distributed on an "AS IS" BASIS,
12bc101806249eb883f89c4a770a8c27f9ac315837Raphael * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13bc101806249eb883f89c4a770a8c27f9ac315837Raphael * See the License for the specific language governing permissions and
14bc101806249eb883f89c4a770a8c27f9ac315837Raphael * limitations under the License.
15bc101806249eb883f89c4a770a8c27f9ac315837Raphael */
16bc101806249eb883f89c4a770a8c27f9ac315837Raphael
17bc101806249eb883f89c4a770a8c27f9ac315837Raphaelpackage com.android.tools.layoutlib.annotations;
18bc101806249eb883f89c4a770a8c27f9ac315837Raphael
19bc101806249eb883f89c4a770a8c27f9ac315837Raphaelimport java.lang.annotation.Retention;
20bc101806249eb883f89c4a770a8c27f9ac315837Raphaelimport java.lang.annotation.RetentionPolicy;
21bc101806249eb883f89c4a770a8c27f9ac315837Raphael
22bc101806249eb883f89c4a770a8c27f9ac315837Raphael/**
23bc101806249eb883f89c4a770a8c27f9ac315837Raphael * Denotes a method that has been converted to a delegate by layoutlib_create.
24bc101806249eb883f89c4a770a8c27f9ac315837Raphael */
25bc101806249eb883f89c4a770a8c27f9ac315837Raphael@Retention(RetentionPolicy.RUNTIME)
26bc101806249eb883f89c4a770a8c27f9ac315837Raphaelpublic @interface LayoutlibDelegate {
27bc101806249eb883f89c4a770a8c27f9ac315837Raphael}
28