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.List;
     22 
     23 /** Representation of a method in the API with parameters (arguments) and a return value. */
     24 class ApiMethod implements Comparable<ApiMethod> {
     25 
     26     private final String mName;
     27 
     28     private final List<String> mParameterTypes;
     29 
     30     private final String mReturnType;
     31 
     32     private boolean mDeprecated;
     33 
     34     private boolean mIsCovered;
     35 
     36     ApiMethod(String name, List<String> parameterTypes, String returnType, boolean deprecated) {
     37         mName = name;
     38         mParameterTypes = new ArrayList<String>(parameterTypes);
     39         mReturnType = returnType;
     40         mDeprecated = deprecated;
     41     }
     42 
     43     @Override
     44     public int compareTo(ApiMethod another) {
     45         return mName.compareTo(another.mName);
     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 String getReturnType() {
     57         return mReturnType;
     58     }
     59 
     60     public boolean isDeprecated() {
     61         return mDeprecated;
     62     }
     63 
     64     public boolean isCovered() {
     65         return mIsCovered;
     66     }
     67 
     68     public void setCovered(boolean covered) {
     69         mIsCovered = covered;
     70     }
     71 }