All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----org.omg.CORBA.Context
#pragma prefix "omg.org/CORBA"
interface Context {
readonly attribute ::CORBA::Identifier context_name;
readonly attribute ::CORBA::Context parent;
void set_one_value(
in ::CORBA::Identifier prop_name,
in any value
);
void set_values(
in ::CORBA::NVList values
);
::CORBA::NVList get_values(
in ::CORBA::Identifier start_scope,
in ::CORBA::Flags op_flags,
in ::CORBA::Identifier prop_name
);
void delete_values(
in ::CORBA::Identifier prop_name
);
::CORBA::Context create_child(
in ::CORBA::Identifier child_context_name
);
};
Reader for attribute: ::CORBA::Context::context_name.
Operation: ::CORBA::Context::create_child.
Operation: ::CORBA::Context::delete_values.
Operation: ::CORBA::Context::get_values.
Reader for attribute: ::CORBA::Context::parent.
Operation: ::CORBA::Context::set_one_value.
Operation: ::CORBA::Context::set_values.
public Context()
public abstract String context_name()
Reader for attribute: ::CORBA::Context::context_name.
#pragma prefix "omg.org/CORBA/Context" readonly attribute ::CORBA::Identifier context_name;
public abstract Context parent()
Reader for attribute: ::CORBA::Context::parent.
#pragma prefix "omg.org/CORBA/Context" readonly attribute ::CORBA::Context parent;
public abstract void set_one_value(String prop_name,
Any value)
Operation: ::CORBA::Context::set_one_value.
#pragma prefix "omg.org/CORBA/Context" void set_one_value( in ::CORBA::Identifier prop_name, in any value );
public abstract void set_values(NVList values)
Operation: ::CORBA::Context::set_values.
#pragma prefix "omg.org/CORBA/Context" void set_values( in ::CORBA::NVList values );
public abstract NVList get_values(String start_scope,
int op_flags,
String prop_name)
Operation: ::CORBA::Context::get_values.
#pragma prefix "omg.org/CORBA/Context" ::CORBA::NVList get_values( in ::CORBA::Identifier start_scope, in ::CORBA::Flags op_flags, in ::CORBA::Identifier prop_name );
public abstract void delete_values(String prop_name)
Operation: ::CORBA::Context::delete_values.
#pragma prefix "omg.org/CORBA/Context" void delete_values( in ::CORBA::Identifier prop_name );
public abstract Context create_child(String child_context_name)
Operation: ::CORBA::Context::create_child.
#pragma prefix "omg.org/CORBA/Context" ::CORBA::Context create_child( in ::CORBA::Identifier child_context_name );
All Packages Class Hierarchy This Package Previous Next Index