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.android.dexdeps;
18
19public class FieldRef {
20    private String mDeclClass, mFieldType, mFieldName;
21
22    /**
23     * Initializes a new field reference.
24     */
25    public FieldRef(String declClass, String fieldType, String fieldName) {
26        mDeclClass = declClass;
27        mFieldType = fieldType;
28        mFieldName = fieldName;
29    }
30
31    /**
32     * Gets the name of the field's declaring class.
33     */
34    public String getDeclClassName() {
35        return mDeclClass;
36    }
37
38    /**
39     * Gets the type name.  Examples: "Ljava/lang/String;", "[I".
40     */
41    public String getTypeName() {
42        return mFieldType;
43    }
44
45    /**
46     * Gets the field name.
47     */
48    public String getName() {
49        return mFieldName;
50    }
51}
52