Package | Description |
---|---|
javolution.context |
Provides real-time
Context to facilitate
separation of concerns and achieve higher level of performance and
code predictability. |
javolution.testing |
Provides classes and interfaces to facilitate all aspects of testing including
unit tests, performance, regression, etc.
|
javolution.util |
Modifier and Type | Field and Description |
---|---|
static Class<? extends LogContext> |
LogContext.CONSOLE
Holds a context logging debug/informative/warnings/errors events to
the system console (JVM 1.6+).
|
static Configurable<Class<? extends LogContext>> |
LogContext.DEFAULT
Holds the logging context default implementation (configurable,
default value
STANDARD ). |
static Class<? extends LogContext> |
LogContext.NULL
Holds a logging context implementation ignoring logging events.
|
static Class<? extends LogContext> |
LogContext.STANDARD
Holds the logging context implementation forwarding log events to the
root
java.util.logging.Logger (default logging context). |
static Class<? extends LogContext> |
LogContext.SYSTEM_OUT
Holds a context logging debug/informative/warning/error messages
to
System.out . |
Modifier and Type | Method and Description |
---|---|
static LogContext |
LogContext.getCurrentLogContext()
Returns the current logging context.
|
static LogContext |
LogContext.getDefault()
Returns the default instance (
DEFAULT implementation). |
Modifier and Type | Class and Description |
---|---|
class |
JUnitContext
This class represents a test context forwarding events to the
JUnit framework (e.g.
|
class |
TestContext
This class represents a logging context specialized for testing.
|
class |
TimeContext
This class represents a
test context specialized
for measuring execution time. |
Modifier and Type | Field and Description |
---|---|
static Class<? extends LogContext> |
TestContext.CONSOLE
Holds a test context logging test results to the system console.
|
Modifier and Type | Class and Description |
---|---|
class |
StandardLog
This class represents a specialized logging context forwarding events
to a standard logger (
java.util.logging.Logger ). |
Copyright © 2005–2017 Javolution. All rights reserved.