Uses of Class
javolution.context.LogContext

Packages that use LogContext
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 Provides high-performance collection classes and miscellaneous utilities; although this package provides very few collection classes, they are substitutes for most of java.util.* classes (for example, java.util.IdentityHashMap would be a FastMap with an identity key comparator). 
 

Uses of LogContext in javolution.context
 

Fields in javolution.context with type parameters of type LogContext
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.
 

Methods in javolution.context that return LogContext
static LogContext LogContext.getCurrentLogContext()
          Returns the current logging context.
static LogContext LogContext.getDefault()
          Returns the default instance (DEFAULT implementation).
 

Uses of LogContext in javolution.testing
 

Subclasses of LogContext in javolution.testing
 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.
 

Fields in javolution.testing with type parameters of type LogContext
static Class<? extends LogContext> TestContext.CONSOLE
          Holds a test context logging test results to the system console.
 

Uses of LogContext in javolution.util
 

Subclasses of LogContext in javolution.util
 class StandardLog
           This class represents a specialized logging context forwarding events to a standard logger (java.util.logging.Logger).
 



Copyright © 2005-2012 Javolution. All Rights Reserved.