Back to project page YourConsole.
The source code is released under:
MIT License
If you think the Android project YourConsole 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 com.akisute.yourconsole.app.reader; //w w w. j a va 2 s. com import java.io.IOException; import java.io.Reader; public abstract class LogcatReader extends Reader { public abstract String readLine() throws IOException; public abstract void skipLine() throws IOException; public abstract boolean isReadyToReadNewLines(); }