/**@class android.webkit.ConsoleMessage
@extends java.lang.Object

 Public class representing a JavaScript console message from WebCore. This could be a issued
 by a call to one of the <code>console</code> logging functions (e.g.
 <code>console.log('...')</code>) or a JavaScript error on the  page. To receive notifications
 of these messages, override the
 {@link android.webkit.WebChromeClient#onConsoleMessage(ConsoleMessage)} function.
*/
var ConsoleMessage = {

/**
*/
messageLevel : function(  ) {},

/**
*/
message : function(  ) {},

/**
*/
sourceId : function(  ) {},

/**
*/
lineNumber : function(  ) {},


};