fitnesse.wikitext.parser.SourcePage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
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);
}