|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TreeLogger.Type | |
---|---|
com.google.gwt.core.ext | Classes used to extend the GWT compiler. |
Uses of TreeLogger.Type in com.google.gwt.core.ext |
---|
Fields in com.google.gwt.core.ext declared as TreeLogger.Type | |
---|---|
static TreeLogger.Type |
TreeLogger.ALL
Logs everything -- quite a bit of stuff. |
static TreeLogger.Type |
TreeLogger.DEBUG
Logs detailed information that could be useful during debugging. |
static TreeLogger.Type |
TreeLogger.ERROR
Logs an error. |
static TreeLogger.Type |
TreeLogger.INFO
Logs information. |
static TreeLogger.Type |
TreeLogger.SPAM
Logs extremely verbose and detailed information that is typically useful only to product implementors. |
static TreeLogger.Type |
TreeLogger.TRACE
Logs information related to lower-level operation. |
static TreeLogger.Type |
TreeLogger.WARN
Logs a warning. |
Methods in com.google.gwt.core.ext that return TreeLogger.Type | |
---|---|
static TreeLogger.Type[] |
TreeLogger.Type.instances()
Gets all the possible severity types as an array. |
static TreeLogger.Type |
TreeLogger.Type.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TreeLogger.Type[] |
TreeLogger.Type.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in com.google.gwt.core.ext with parameters of type TreeLogger.Type | |
---|---|
TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg)
Calls TreeLogger.branch(com.google.gwt.core.ext.TreeLogger.Type, String, Throwable, com.google.gwt.core.ext.TreeLogger.HelpInfo)
with a null caught and helpInfo . |
TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught)
Calls TreeLogger.branch(com.google.gwt.core.ext.TreeLogger.Type, String, Throwable, com.google.gwt.core.ext.TreeLogger.HelpInfo)
with a null helpInfo . |
abstract TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught,
TreeLogger.HelpInfo helpInfo)
Produces a branched logger, which can be used to write messages that are logically grouped together underneath the current logger. |
abstract boolean |
TreeLogger.isLoggable(TreeLogger.Type type)
Determines whether or not a log entry of the specified type would actually be logged. |
boolean |
TreeLogger.Type.isLowerPriorityThan(TreeLogger.Type other)
Determines whether this log type is of lower priority than some other log type. |
void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg)
Calls TreeLogger.log(TreeLogger.Type, String, Throwable, HelpInfo) with a
null caught and helpInfo . |
void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught)
Calls TreeLogger.log(TreeLogger.Type, String, Throwable, HelpInfo) with a
null helpInfo . |
abstract void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught,
TreeLogger.HelpInfo helpInfo)
Logs a message and/or an exception, with optional help info. |
|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |