All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.omg.CORBA.RepositoryOperations

public interface RepositoryOperations
extends ContainerOperations

IDL definition:
interface Repository : ::CORBA::Container {
::CORBA::Contained lookup_id(
in ::CORBA::RepositoryId search_id
);
::CORBA::PrimitiveDef get_primitive(
in ::CORBA::PrimitiveKind kind
);
::CORBA::StringDef create_string(
in unsigned long bound
);
::CORBA::WstringDef create_wstring(
in unsigned long bound
);
::CORBA::SequenceDef create_sequence(
in unsigned long bound,
in ::CORBA::IDLType element_type
);
::CORBA::ArrayDef create_array(
in unsigned long length,
in ::CORBA::IDLType element_type
);
};


Method Index

 o create_array(int, IDLType)

Operation: ::CORBA::Repository::create_array.

 o create_sequence(int, IDLType)

Operation: ::CORBA::Repository::create_sequence.

 o create_string(int)

Operation: ::CORBA::Repository::create_string.

 o create_wstring(int)

Operation: ::CORBA::Repository::create_wstring.

 o get_primitive(PrimitiveKind)

Operation: ::CORBA::Repository::get_primitive.

 o lookup_id(String)

Operation: ::CORBA::Repository::lookup_id.

Methods

 o lookup_id
 public abstract Contained lookup_id(String search_id)

Operation: ::CORBA::Repository::lookup_id.

::CORBA::Contained lookup_id(
in ::CORBA::RepositoryId search_id
);

 o get_primitive
 public abstract PrimitiveDef get_primitive(PrimitiveKind kind)

Operation: ::CORBA::Repository::get_primitive.

::CORBA::PrimitiveDef get_primitive(
in ::CORBA::PrimitiveKind kind
);

 o create_string
 public abstract StringDef create_string(int bound)

Operation: ::CORBA::Repository::create_string.

::CORBA::StringDef create_string(
in unsigned long bound
);

 o create_wstring
 public abstract WstringDef create_wstring(int bound)

Operation: ::CORBA::Repository::create_wstring.

::CORBA::WstringDef create_wstring(
in unsigned long bound
);

 o create_sequence
 public abstract SequenceDef create_sequence(int bound,
                                             IDLType element_type)

Operation: ::CORBA::Repository::create_sequence.

::CORBA::SequenceDef create_sequence(
in unsigned long bound,
in ::CORBA::IDLType element_type
);

 o create_array
 public abstract ArrayDef create_array(int length,
                                       IDLType element_type)

Operation: ::CORBA::Repository::create_array.

::CORBA::ArrayDef create_array(
in unsigned long length,
in ::CORBA::IDLType element_type
);


All Packages  Class Hierarchy  This Package  Previous  Next  Index