handle() method. This method defines what
to do to "handle" the logging record. This method does not need to check the handler's level against the level
of the record. The the logger does this before calling handle() and will not call
handle() if the record's level is not severe enough.
| Constructor Summary | |
|---|---|
| void | |
| Method Summary | |
|---|---|
| int | getLevel() Returns the level of this handler. |
| String | getName() Returns the name of this Handler. |
| abstract void | handle(objRecord : jsx3.util.Logger.Record) Concrete subclasses of this class must implement this method, which defines how a log record is handled. |
| boolean | isLoggable(intLevel : int) Returns true if a log message sent to this handler at level intLevel will be processed rather than
ignored. |
| static void | registerHandlerClass(objClass : jsx3.lang.Class) Call this method to let the logging system know that a new subclass of Handler has been defined. |
| int | setLevel(intLevel : ?) Sets the level of this handler. |
| Methods Inherited From jsx3.lang.Object |
|---|
| clone, equals, eval, getClass, getInstanceOf, getInstanceOfClass, getInstanceOfPackage, instanceOf, isInstanceOf, isSubclassOf, jsxmix, jsxsuper, jsxsupermix, setInstanceOf, toString |
| Constructor Detail |
|---|
| Method Detail |
|---|
null if no level has been specified.intLevel will be processed rather than
ignored.