android.webkit.ConsoleMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
The newest version!
package android.webkit;
public class ConsoleMessage
{
public static enum MessageLevel
{
DEBUG(),
ERROR(),
LOG(),
TIP(),
WARNING();
}
public ConsoleMessage(java.lang.String message, java.lang.String sourceId, int lineNumber, android.webkit.ConsoleMessage.MessageLevel msgLevel) { throw new RuntimeException("Stub!"); }
public android.webkit.ConsoleMessage.MessageLevel messageLevel() { throw new RuntimeException("Stub!"); }
public java.lang.String message() { throw new RuntimeException("Stub!"); }
public java.lang.String sourceId() { throw new RuntimeException("Stub!"); }
public int lineNumber() { throw new RuntimeException("Stub!"); }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy