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

fitnesse.wikitext.parser.SourcePage Maven / Gradle / Ivy

There is a newer version: 20241026
Show newest version
package fitnesse.wikitext.parser;

import java.util.Collection;
import java.util.List;

public interface SourcePage extends Comparable {
    String getName();
    String getFullName();
    String getPath();
    String getFullPath();
    String getContent();
    boolean targetExists(String wikiWordPath);
    String makeFullPathOfTarget(String wikiWordPath);
    String findParentPath(String targetName);
    Maybe findIncludedPage(String pageName);

    Collection getChildren();
    boolean hasProperty(String propertyKey);
    String getProperty(String propertyKey);
    String makeUrl(String wikiWordPath);

    List getSymbols(SymbolType symbolType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy