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