yacy_search_server/source/de/anomic/data/wiki/tokens/Token.java
karlchenofhell 0c7b8cf632 - added first version of new wiki-parser
- added blacklist support to manual URLFetcher stack fill
- fix for NPE: http://www.yacy-forum.de/viewtopic.php?t=3559

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3385 6c8d7289-2bf4-0310-a012-ef5d649a1542
2007-02-21 22:31:36 +00:00

14 lines
278 B
Java

package de.anomic.data.wiki.tokens;
import java.util.regex.Pattern;
public interface Token {
public Pattern[] getRegex();
public boolean setText(String text, int patternNr);
public String getText();
public String getMarkup();
public String[] getBlockElementNames();
}