1 5 6 package org.omg.CORBA; 7 8 public interface RepositoryOperations extends 9 org.omg.CORBA.ContainerOperations { 10 11 public org.omg.CORBA.Contained lookup_id(java.lang.String search_id); 12 13 public org.omg.CORBA.TypeCode get_canonical_typecode( 14 org.omg.CORBA.TypeCode tc); 15 16 public org.omg.CORBA.PrimitiveDef get_primitive( 17 org.omg.CORBA.PrimitiveKind kind); 18 19 public org.omg.CORBA.StringDef create_string(int bound); 20 21 public org.omg.CORBA.WstringDef create_wstring(int bound); 22 23 public org.omg.CORBA.SequenceDef create_sequence(int bound, 24 org.omg.CORBA.IDLType element_type); 25 26 public org.omg.CORBA.ArrayDef create_array(int length, 27 org.omg.CORBA.IDLType element_type); 28 29 public org.omg.CORBA.FixedDef create_fixed(short digits, short scale); 30 } 31 | Popular Tags |