1/*
2 * Copyright (C) 2009 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
17package com.cooliris.app;
18
19import com.cooliris.media.R;
20
21public class Res {
22//    	public static final R.anim anim = new R.anim();
23    	public static final R.array array = new R.array();
24    	public static final R.attr attr = new R.attr();
25//    	public static final R.bool bool = new R.bool();
26//    	public static final R.color color = new R.color();
27//    	public static final R.dimen dimen = new R.dimen();
28    	public static final R.drawable drawable = new R.drawable();
29    	public static final R.id id = new R.id();
30//    	public static final R.integer integer = new R.integer();
31    	public static final R.layout layout = new R.layout();
32//    	public static final R.plurals plurals = new R.plurals();
33//    	public static final R.raw raw = new R.raw();
34    	public static final R.string string = new R.string();
35//    	public static final R.style style = new R.style();
36//    	public static final R.styleable = new R.styleable();
37    	public static final R.xml xml = new R.xml();
38}
39