Home | History | Annotate | Download | only in apicoverage
      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 
     17 package com.android.cts.apicoverage;
     18 
     19 import java.util.ArrayList;
     20 import java.util.Collections;
     21 import java.util.HashSet;
     22 import java.util.List;
     23 import java.util.Set;
     24 
     25 /** Representation of a constructor in the API with parameters (arguments). */
     26 class ApiConstructor implements Comparable<ApiConstructor> {
     27 
     28     private final String mName;
     29 
     30     private final List<String> mParameterTypes;
     31 
     32     private final boolean mDeprecated;
     33 
     34     // A list of test APKs (aka CTS modules) that use this method.
     35     private final Set<String> mCoveredWith = new HashSet<>();
     36 
     37     ApiConstructor(String name, List<String> parameterTypes, boolean deprecated) {
     38         mName = name;
     39         mParameterTypes = new ArrayList<String>(parameterTypes);
     40         mDeprecated = deprecated;
     41     }
     42 
     43     @Override
     44     public int compareTo(ApiConstructor another) {
     45         return mParameterTypes.size() - another.mParameterTypes.size();
     46     }
     47 
     48     public String getName() {
     49         return mName;
     50     }
     51 
     52     public List<String> getParameterTypes() {
     53         return Collections.unmodifiableList(mParameterTypes);
     54     }
     55 
     56     public boolean isDeprecated() {
     57         return mDeprecated;
     58     }
     59 
     60     public boolean isCovered() {
     61         return !mCoveredWith.isEmpty();
     62     }
     63 
     64     public void setCovered(String coveredWithModule) {
     65         if (coveredWithModule.endsWith(".apk")) {
     66             coveredWithModule = coveredWithModule.substring(0, coveredWithModule.length() - 4);
     67         }
     68         mCoveredWith.add(coveredWithModule);
     69     }
     70 
     71     public Set<String> getCoveredWith() {
     72         return mCoveredWith;
     73     }
     74 }
     75