Package | Description |
---|---|
javolution.context |
Run-time
contexts to facilitate
separation of concerns and achieve higher level of performance and flexibility. |
javolution.text |
Text handling package.
|
javolution.xml |
Support for the encoding of objects, and the objects reachable from them,
into
XML ; and the complementary reconstruction of the
object graph from XML . |
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentContext
A context able to take advantage of concurrent algorithms on
multi-processors systems.
|
class |
FormatContext
The parent class for all serializer/deserializer contexts.
|
class |
LocalContext
A context holding locally scoped
parameters values. |
class |
LogContext
Asynchronous logging context integrated with the OSGi logging framework.
|
class |
SecurityContext
A high-level security context integrated with OSGi.
|
Modifier and Type | Method and Description |
---|---|
protected static <T extends AbstractContext> |
AbstractContext.current(Class<T> type)
Returns the current context of specified type or
null if none. |
static <T extends AbstractContext> |
AbstractContext.enter(Class<T> custom)
Enters the scope of a custom context.
|
Modifier and Type | Method and Description |
---|---|
static AbstractContext |
AbstractContext.current()
Returns the current context for the current thread or
null
if this thread has no context (default). |
protected AbstractContext |
AbstractContext.enterInner()
Enters the scope of an inner context which becomes the current context;
the previous current context becomes the outer of this context.
|
protected AbstractContext |
AbstractContext.getOuter()
Returns the outer context of this context or
null if this
context has no outer context. |
protected abstract AbstractContext |
AbstractContext.inner()
Returns a new inner instance of this context inheriting the properties
of this context.
|
Modifier and Type | Method and Description |
---|---|
static void |
AbstractContext.inherit(AbstractContext ctx)
Inherits the specified context which becomes the context of the current
thread.
|
Modifier and Type | Class and Description |
---|---|
class |
TextContext
A context for plain text parsing/formatting.
|
Modifier and Type | Class and Description |
---|---|
class |
XMLContext
A context for xml serialization/deserialization.
|
Copyright © 2005-2013 Javolution. All Rights Reserved.