1c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount/*
2c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * Copyright (C) 2015 The Android Open Source Project
3c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *
4c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * Licensed under the Apache License, Version 2.0 (the "License");
5c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * you may not use this file except in compliance with the License.
6c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * You may obtain a copy of the License at
7c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *
8c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *      http://www.apache.org/licenses/LICENSE-2.0
9c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *
10c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * Unless required by applicable law or agreed to in writing, software
11c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * distributed under the License is distributed on an "AS IS" BASIS,
12c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * See the License for the specific language governing permissions and
14c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * limitations under the License.
15c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount */
16c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mountpackage com.android.databinding.library;
17c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount
18c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount/**
19c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * This is only here to allow building the javadoc without building the rest of
20c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * data binding.
21c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *
22c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * This should be removed when data binding is included in the framework build.
23c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount *
24c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount * @hide
25c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount */
26c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mountpublic class R {
27c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount    public static class id {
28c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount        public static int dataBinding = 0;
29c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount    }
30c9a5d6f140f732ca0ff279a4b1ee315072e1c422George Mount}