public interface ILcdXMLDocumentContext
ILcdXMLDocumentContext
is created per document by the XML context.
Users should not implement this interface.Modifier and Type | Interface and Description |
---|---|
static class |
ILcdXMLDocumentContext.Scope
A type-safe enumeration, representing all possible scopes to be used
in XML document contexts.
|
Modifier and Type | Method and Description |
---|---|
Object |
get(Object aKey,
ILcdXMLDocumentContext.Scope aScope)
Retrieves an object in the document context.
|
void |
put(Object aKey,
ILcdXMLDocumentContext.Scope aScope,
Object aValue)
Stores an object in the document context.
|
void put(Object aKey, ILcdXMLDocumentContext.Scope aScope, Object aValue)
aKey
- the key, used to identify the object.aValue
- the object to be stored.aScope
- the scope, in which the object should be visible.NullPointerException
- if aKey
or aScope
is null
.Object get(Object aKey, ILcdXMLDocumentContext.Scope aScope)
aKey
- the key, used to identify the object.aScope
- the scope in which the object is stored.null
if no object was stored yet.NullPointerException
- if aKey
or aScope
is null
.