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

org.jqassistant.contrib.plugin.csharp.model.LineCountDescriptor Maven / Gradle / Ivy

The newest version!
package org.jqassistant.contrib.plugin.csharp.model;

public interface LineCountDescriptor {

    Integer getFirstLineNumber();
    void setFirstLineNumber(Integer firstLineNumber);

    Integer getLastLineNumber();
    void setLastLineNumber(Integer lastLineNumber);

    Integer getEffectiveLineCount();
    void setEffectiveLineCount(Integer effectiveLineCount);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy