slcom/slangc/sdk/SimpleReporter.sauce

17 lines
293 B
Plaintext
Raw Permalink Normal View History

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);
}
}