com.atlassian.clover.api.registry.StatementInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clover Show documentation
Show all versions of clover Show documentation
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.
package com.atlassian.clover.api.registry;
import com.atlassian.clover.spi.lang.LanguageConstruct;
import org.jetbrains.annotations.NotNull;
/**
* Represents a single statement.
*/
public interface StatementInfo extends ElementInfo, InstrumentationInfo, HasParent {
/**
* Return kind of the code construct (statement, branch, elvis expression etc)
*
* @return LanguageConstruct
*/
@NotNull
public LanguageConstruct getConstruct();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy