org.omg.CORBA
public abstract class Context extends Object
Constructor Summary | |
---|---|
Context() |
Method Summary | |
---|---|
abstract String | context_name()
Get the context name. |
abstract Context | create_child(String child)
Create a child of this Context, giving it a name. |
abstract void | delete_values(String property)
Delete one or several (identically named) given properties.
|
abstract NVList | get_values(String start_scope, int flags, String pattern)
Search the values.
|
abstract Context | parent()
Get the parent of this context. |
abstract void | set_one_value(String name, Any value)
Set a property. |
abstract void | set_values(NVList values)
Set multiple properties.
|
Returns: the name of this context.
Parameters: child a name of the child context.
Returns: the newly created context.
Parameters: property the name of the property to delete, may end by wildchar character '*'. The search scope is always limited to the current context.
Parameters: start_scope the context at which to initiate the search. flags the search operation flags. The flag {@link CTX_RESTRICT_SCOPE} means that search is restricted to the start_scope. pattern the property being searched, can be either name or name with the optional trailing wildchar character '*'.
Returns: the list of the found properties.
Returns: the parent of this context.
Parameters: name the property name. value the property value (the {@link Any} must hold string).
Parameters: values a list of properties, the {@link Any}'s in the list components must hold strings.