• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.databinding;
18 
19 import android.view.View;
20 
21 /**
22  * This class will be stripped from the jar and then replaced by the annotation processor
23  * as part of the code generation step. This class's existence is just to ensure that
24  * compile works and no reflection is needed to access the generated class.
25  * @hide
26  */
27 class DataBinderMapper {
getDataBinder(DataBindingComponent bindingComponent, View view, int layoutId)28     public ViewDataBinding getDataBinder(DataBindingComponent bindingComponent, View view,
29             int layoutId) {
30         return null;
31     }
getDataBinder(DataBindingComponent bindingComponent, View[] view, int layoutId)32     ViewDataBinding getDataBinder(DataBindingComponent bindingComponent, View[] view, int layoutId) {
33         return null;
34     }
getLayoutId(String tag)35     public int getLayoutId(String tag) { return 0; }
convertBrIdToString(int id)36     public String convertBrIdToString(int id) {
37         return null;
38     }
39     public static int TARGET_MIN_SDK = 0;
40 }
41