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

gherkin.IGherkinLine Maven / Gradle / Ivy

The newest version!
package gherkin;

import java.util.List;

public interface IGherkinLine {
    Integer indent();

    void detach();

    String getLineText(int indentToRemove);

    boolean isEmpty();

    boolean startsWith(String prefix);

    String getRestTrimmed(int length);

    List getTags();

    boolean startsWithTitleKeyword(String keyword);

    List getTableCells();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy