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.
12 lines
333 B
12 lines
333 B
package de.anomic.data.wiki;
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
public interface wikiParser {
|
|
|
|
public String transform(String text);
|
|
public String transform(byte[] text) throws UnsupportedEncodingException;
|
|
public String transform(byte[] text, String encoding) throws UnsupportedEncodingException;
|
|
|
|
}
|