17 lines
293 B
Plaintext
17 lines
293 B
Plaintext
package slangc.sdk;
|
|
|
|
import slangc.api.NullReporter;
|
|
|
|
public class SimpleReporter extends NullReporter {
|
|
|
|
public SimpleReporter() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
@Override
|
|
public void note(String topic, String text) {
|
|
Log.line(topic + ": " + text);
|
|
}
|
|
|
|
}
|