Class NamespaceAccessor
- java.lang.Object
-
- groovy.lang.GroovyObjectSupport
-
- de.uplanet.lucy.server.scripting.bpee.NamespaceAccessor
-
- All Implemented Interfaces:
groovy.lang.GroovyObject
public final class NamespaceAccessor extends groovy.lang.GroovyObjectSupport
-
-
Constructor Summary
Constructors Constructor Description NamespaceAccessor(de.uplanet.lucy.bpee.IBpeeExecutionContext p_ctx, String p_strNamespace)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(String p_strLocalName)
boolean
containsVariable(String p_strLocalName)
Object
get(String p_strLocalName)
Object
getAt(String p_strLocalName)
Object
getProperty(String p_strLocalName)
IValueHolder<?>
getVariable(String p_strLocalName)
void
put(String p_strLocalName, Object p_value)
void
putAt(String p_strLocalName, Object p_value)
void
putVariable(String p_strLocalName, IValueHolder<?> p_vh)
void
remove(String p_strLocalName)
void
removeVariable(String p_strLocalName)
void
setProperty(String p_strLocalName, Object p_value)
-
-
-
Constructor Detail
-
NamespaceAccessor
public NamespaceAccessor(de.uplanet.lucy.bpee.IBpeeExecutionContext p_ctx, String p_strNamespace)
-
-
Method Detail
-
contains
public boolean contains(String p_strLocalName)
-
remove
public void remove(String p_strLocalName)
-
containsVariable
public boolean containsVariable(String p_strLocalName)
-
getVariable
public IValueHolder<?> getVariable(String p_strLocalName)
-
putVariable
public void putVariable(String p_strLocalName, IValueHolder<?> p_vh)
-
removeVariable
public void removeVariable(String p_strLocalName)
-
-