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

com.atlassian.clover.api.registry.MethodSignatureInfo Maven / Gradle / Ivy

Go to download

Clover is an award winning code coverage and testing tool for Java. It integrates easily with Maven (1 and 2), Ant, Eclipse and IntelliJ-IDEA.

There is a newer version: 3.3.0
Show newest version
package com.atlassian.clover.api.registry;

import org.jetbrains.annotations.NotNull;

import java.util.Collection;
import java.util.Map;

public interface MethodSignatureInfo {
    ModifiersInfo getModifiers();

    @NotNull
    Map> getAnnotations();

    String getName();

    String getReturnType();

    String getTypeParams();

    ParameterInfo[] getParameters();

    boolean hasParams();

    int getParamCount();

    String[] getThrowsTypes();

    String getNormalizedSignature();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy