processing.app.debug
Interface MessageConsumer

All Known Implementing Classes:
Runner

public interface MessageConsumer

Interface for dealing with parser/compiler output.

Different instances of MessageStream need to do different things with messages. In particular, a stream instance used for parsing output from the compiler compiler has to interpret its messages differently than one parsing output from the runtime.

Classes which consume messages and do something with them should implement this interface.


Method Summary
 void message(java.lang.String s)
           
 

Method Detail

message

void message(java.lang.String s)