All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.manoelcampos.javadoc.coverage.stats.MethodParamsDocStats Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
/*
 * Copyright 2017-2017 Manoel Campos da Silva Filho
 *
 * Licensed under the General Public License Version 3 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    https://www.gnu.org/licenses/gpl-3.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.manoelcampos.javadoc.coverage.stats;

import com.sun.javadoc.ExecutableMemberDoc;

/**
 * Computes JavaDoc coverage statistics for parameters from a specific method.
 *
 * @author Manoel Campos da Silva Filho
 * @since 1.0.0
 */
public class MethodParamsDocStats extends MethodTagsDocStats {

    /**
     * Instantiates an object to compute JavaDoc coverage statistics for the params
     * of a method/constructor.
     *
     * @param doc the element which enables reading the method's JavaDoc documentation
     */
    MethodParamsDocStats(final ExecutableMemberDoc doc) {
        super(doc);
    }

    @Override
    public long getMembersNumber() {
        return getDoc().parameters().length;
    }

    @Override
    public String getTagName() {
        return "@param";
    }

    @Override
    public String getType() {
        return "Params";
    }

    /**
     * A set of params doesn't have documentation,
     * only each individual param may have.
     * @return
     */
    @Override
    public boolean hasDocumentation() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy