Back to project page MConsole.
The source code is released under:
MIT License
If you think the Android project MConsole listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pl.skifo.mconsole; //from w w w.j a va 2 s .c o m public interface ConsoleOutput { public void addLine(String line); public void addLine(AttributedLine line); public void addBlock(AttributedBlock block); public void refresh(); }