All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.omg.CORBA.Context

java.lang.Object
    |
    +----org.omg.CORBA.Context

public abstract class Context
extends Object

IDL definition:
#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
);
};


Constructor Index

 o Context()

Method Index

 o context_name()

Reader for attribute: ::CORBA::Context::context_name.

 o create_child(String)

Operation: ::CORBA::Context::create_child.

 o delete_values(String)

Operation: ::CORBA::Context::delete_values.

 o get_values(String, int, String)

Operation: ::CORBA::Context::get_values.

 o parent()

Reader for attribute: ::CORBA::Context::parent.

 o set_one_value(String, Any)

Operation: ::CORBA::Context::set_one_value.

 o set_values(NVList)

Operation: ::CORBA::Context::set_values.

Constructors

 o Context
public Context()

Methods

 o context_name
public abstract String context_name()

Reader for attribute: ::CORBA::Context::context_name.

#pragma prefix "omg.org/CORBA/Context"
readonly attribute ::CORBA::Identifier context_name;

 o parent
public abstract Context parent()

Reader for attribute: ::CORBA::Context::parent.

#pragma prefix "omg.org/CORBA/Context"
readonly attribute ::CORBA::Context parent;

 o set_one_value
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
);

 o set_values
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
);

 o get_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
);

 o delete_values
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
);

 o create_child
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