You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
278 B
14 lines
278 B
18 years ago
|
|
||
|
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();
|
||
|
}
|