SymbolExpr.java revision 2611838bffef5a009ca71e3e9e59a93f29b098ed
1/*
2 * Copyright (C) 2015 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 android.databinding.tool.expr;
18
19import android.databinding.tool.reflection.ModelAnalyzer;
20import android.databinding.tool.reflection.ModelClass;
21
22import java.util.ArrayList;
23import java.util.List;
24
25public class SymbolExpr extends Expr {
26    String mText;
27    Class mType;
28
29    SymbolExpr(String text, Class type) {
30        super();
31        mText = text;
32        mType = type;
33    }
34
35    public String getText() {
36        return mText;
37    }
38
39    @Override
40    protected ModelClass resolveType(ModelAnalyzer modelAnalyzer) {
41        return modelAnalyzer.findClass(mType);
42    }
43
44    @Override
45    protected String computeUniqueKey() {
46        return mType.getSimpleName() + mText;
47    }
48
49    @Override
50    protected List<Dependency> constructDependencies() {
51        return new ArrayList<>();
52    }
53}
54