1/*
2 * Copyright (C) 2010 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.cts.apicoverage;
18
19import java.util.ArrayList;
20import java.util.Collections;
21import java.util.List;
22
23/** Representation of a constructor in the API with parameters (arguments). */
24class ApiConstructor implements Comparable<ApiConstructor> {
25
26    private final String mName;
27
28    private final List<String> mParameterTypes;
29
30    private final boolean mDeprecated;
31
32    private boolean mIsCovered;
33
34    ApiConstructor(String name, List<String> parameterTypes, boolean deprecated) {
35        mName = name;
36        mParameterTypes = new ArrayList<String>(parameterTypes);
37        mDeprecated = deprecated;
38    }
39
40    @Override
41    public int compareTo(ApiConstructor another) {
42        return mParameterTypes.size() - another.mParameterTypes.size();
43    }
44
45    public String getName() {
46        return mName;
47    }
48
49    public List<String> getParameterTypes() {
50        return Collections.unmodifiableList(mParameterTypes);
51    }
52
53    public boolean isDeprecated() {
54        return mDeprecated;
55    }
56
57    public boolean isCovered() {
58        return mIsCovered;
59    }
60
61    public void setCovered(boolean covered) {
62        mIsCovered = covered;
63    }
64}