summaryrefslogtreecommitdiff
path: root/AbstractInterpreter.java
blob: 7e7b82db6d9cfec395dae61d33e62f9ead1fc92d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
abstract class AbstractInterpreter implements Interpreter  {
    public String print(String code) {
	return code;
    }

    public String trace(String code, String param) {
	return code;
    }

    public int minLength() {
	return 0;
    }

    public int maxLength() {
	return 1024 * 1024;
    }
}
contact: Jan Huwald // Impressum