01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public interface RepositoryOperations extends
07: org.omg.CORBA.ContainerOperations {
08:
09: public org.omg.CORBA.Contained lookup_id(java.lang.String search_id);
10:
11: public org.omg.CORBA.TypeCode get_canonical_typecode(
12: org.omg.CORBA.TypeCode tc);
13:
14: public org.omg.CORBA.PrimitiveDef get_primitive(
15: org.omg.CORBA.PrimitiveKind kind);
16:
17: public org.omg.CORBA.StringDef create_string(int bound);
18:
19: public org.omg.CORBA.WstringDef create_wstring(int bound);
20:
21: public org.omg.CORBA.SequenceDef create_sequence(int bound,
22: org.omg.CORBA.IDLType element_type);
23:
24: public org.omg.CORBA.ArrayDef create_array(int length,
25: org.omg.CORBA.IDLType element_type);
26:
27: public org.omg.CORBA.FixedDef create_fixed(short digits, short scale);
28: }
|