From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/orber/doc/src/orber_ifr.xml | 1034 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 1034 insertions(+) create mode 100644 lib/orber/doc/src/orber_ifr.xml (limited to 'lib/orber/doc/src/orber_ifr.xml') diff --git a/lib/orber/doc/src/orber_ifr.xml b/lib/orber/doc/src/orber_ifr.xml new file mode 100644 index 0000000000..021082e101 --- /dev/null +++ b/lib/orber/doc/src/orber_ifr.xml @@ -0,0 +1,1034 @@ + + + + +
+ + 19972009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + orber_ifr + + + + + 1997-10-13 + A +
+ orber_ifr + The Interface Repository stores representations of IDL information + +

This module contains functions for managing the Interface + Repository (IFR). This documentation should be used in conjunction + with the documentation in chapter 6 of 2.3. + Whenever the term IFR object is used in this manual page, it + refers to a pseudo object used only for interaction with the IFR + rather than a CORBA object.

+
+ +
+ Initialization of the IFR +

The following functions are used to initialize the Interface + Repository and to obtain the initial reference to the + repository.

+
+ + + init(Nodes,Timeout) -> ok + Intialize the IFR + + Nodes = list() + Timeout = integer() | infinity + + +

This function should be called to initialize the IFR. It + creates the necessary mnesia-tables. A mnesia schema should + exist, and mnesia must be running.

+
+
+ + find_repository() -> #IFR_Repository_objref + Find the IFR object reference for the Repository + +

Find the IFR object reference for the Repository. This + reference should be used when adding objects to the IFR, and + when extracting information from the IFR. + The first time this function is called, it will create the + repository and all the primitive definitions.

+
+
+
+ +
+ General methods +

The following functions are the methods of the IFR. The first + argument is always an #IFR_objref, i.e. the IFR (pseudo)object + on which to apply this method. These functions are useful when + the type of IFR object is not know, but they are somewhat slower + than the specific functions listed below which only accept a + particular type of IFR object as the first argument.

+
+ + + get_def_kind(Objref) -> Return + Return the definition kind of the IFR object + + Objref = #IFR_objref + Return = atom() (one of dk_none, dk_all, dk_Attribute, dk_Constant, dk_Exception, dk_Interface, dk_Module, dk_Operation, dk_Typedef, dk_Alias, dk_Struct, dk_Union, dk_Enum, dk_Primitive, dk_String, dk_Wstring, dk_Fixed, dk_Sequence, dk_Array, dk_Repository) + + +

Objref is an IFR object of any kind. Returns the definition + kind of the IFR object.

+
+
+ + destroy(Objref) -> Return + Destroy, except IRObject, Contained and Container, target object and its contents + + Objref = #IFR_object + Return = tuple() + + +

Objref is an IFR object of any kind except IRObject, + Contained and Container. Destroys that object and its + contents (if any). Returns whatever mnesia:transaction + returns.

+
+
+ + get_id(Objref) -> Return + Return the target object's repository id + + Objref = #IFR_object + Return = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the repository id of that object.

+
+
+ + set_id(Objref,Id) -> ok + Set the target object's repository id + + Objref = #IFR_object + Id = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Sets the repository id of that object.

+
+
+ + get_name(Objref) -> Return + Return the name of the target object + + Objref = #IFR_object + Return = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the name of that object.

+
+
+ + set_name(Objref,Name) -> ok + Set given name to target object + + Objref = #IFR_object + Name = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Sets the name of that object.

+
+
+ + get_version(Objref) -> Return + Return the version of the target object + + Objref = #IFR_object + Return = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the version of that object.

+
+
+ + set_version(Objref,Version) -> ok + Set given version of the target object + + Objref = #IFR_object + Version = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Sets the version of that object.

+
+
+ + get_defined_in(Objref) -> Return + Return the Container the target object is contained in + + Objref = #IFR_object + Return = #IFR_Container_objref + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the Container object that the object is + defined in.

+
+
+ + get_absolute_name(Objref) -> Return + Return the absolute name of the target object + + Objref = #IFR_object + Return = string() + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the absolute (scoped) name of that + object.

+
+
+ + get_containing_repository(Objref) -> Return + Get the most derived Contained object associated with the target object + + Objref = #IFR_object + Return = #IFR_Repository_objref + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns the Repository that is eventually reached + by recursively following the object's defined_in attribute.

+
+
+ + describe(Objref) -> Return + Return a tuple which describe the target object + + Objref = #IFR_object + Return = tuple() (a contained_description record) | {exception, _} + + +

Objref is an IFR object of any kind that inherits from + Contained. Returns a tuple describing the object.

+
+
+ + move(Objref,New_container,New_name,New_version) -> Return + Move the target object from its current location to given Container, name and version + + Objref = #IFR_objref + New_container = #IFR_Container_objref + New_name = string() + New_version = string() + Return = ok | {exception, _} + + +

Objref is an IFR object of any kind that inherits from + Contained. New_container is an IFR object of any kind that + inherits from Container. Removes Objref from its current + Container, and adds it to New_container. The name attribute + is changed to New_name and the version attribute is changed + to New_version.

+
+
+ + lookup(Objref,Search_name) -> Return + Return the IFR object identified by the given name + + Objref = #IFR_objref + Search_name = string() + Return = #IFR_object + + +

Objref is an IFR object of any kind that inherits from + Container. Returns an IFR object identified by search_name + (a scoped name).

+
+
+ + contents(Objref,Limit_type,Exclude_inherited) -> Return + Return the content of the target object limited by the given constraints + + Objref = #IFR_objref + Limit_type = atom() (one of dk_none, dk_all, dk_Attribute, dk_Constant, dk_Exception, dk_Interface, dk_Module, dk_Operation, dk_Typedef, dk_Alias, dk_Struct, dk_Union, dk_Enum, dk_Primitive, dk_String, dk_Wstring, dk_Fixed, dk_Sequence, dk_Array, dk_Repository) + Exclude_inherited = atom() (true or false) + Return = list() (a list of IFR#_objects) + + +

Objref is an IFR object of any kind that inherits from + Container. Returns the contents of that IFR object.

+
+
+ + lookup_name(Objref,Search_name,Levels_to_search, Limit_type, Exclude_inherited) -> Return + Return a list of IFR objects matching the given name + + Objref = #IFR_objref + Search_name = string() + Levels_to_search = integer() + Limit_type = atom() (one of dk_none, dk_all, dk_Attribute, dk_Constant, dk_Exception, dk_Interface, dk_Module, dk_Operation, dk_Typedef, dk_Alias, dk_Struct, dk_Union, dk_Enum, dk_Primitive, dk_String, dk_Wstring, dk_Fixed, dk_Sequence, dk_Array, dk_Repository) + Exclude_inherited = atom() (true or false) + Return = list() (a list of #IFR_objects) + + +

Objref is an IFR object of any kind that inherits from + Container. Returns a list of #IFR_objects with an id + matching Search_name.

+
+
+ + describe_contents(Objref,Limit_type,Exclude_inherited,Max_returned_objs) -> Return + Return a list of descriptions of the IFR objects contained by the target Container object + + Objref = #IFR_objref + Limit_type = atom() (one of dk_none, dk_all, dk_Attribute, dk_Constant, dk_Exception, dk_Interface, dk_Module, dk_Operation, dk_Typedef, dk_Alias, dk_Struct, dk_Union, dk_Enum, dk_Primitive, dk_String, dk_Wstring, dk_Fixed, dk_Sequence, dk_Array, dk_Repository) + Exclude_inherited = atom() (true or false) + Return = list() (a list of tuples (contained_description records) | {exception, _} + + +

Objref is an IFR object of any kind that inherits from + Container. Returns a list of descriptions of the IFR objects + in this Container's contents.

+
+
+ + create_module(Objref,Id,Name,Version) -> Return + Create an IFR object of given type + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Return = #IFR_ModuleDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type ModuleDef.

+
+
+ + create_constant(Objref,Id,Name,Version,Type,Value) -> Return + Create a ConstantDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Type = #IFR_IDLType_objref + Value = any() + Return = #IFR_ConstantDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type ConstantDef.

+
+
+ + create_struct(Objref,Id,Name,Version,Members) -> Return + Create a StructDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Members = list() (list of structmember records) + Return = #IFR_StructDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type StructDef.

+
+
+ + create_union(Objref,Id,Name,Version,Discriminator_type,Members) -> Return + Create a UnionDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Discriminator_type = #IFR_IDLType_Objref + Members = list() (list of unionmember records) + Return = #IFR_UnionDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type UnionDef.

+
+
+ + create_enum(Objref,Id,Name,Version,Members) -> Return + Create a EnumDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Members = list() (list of strings) + Return = #IFR_EnumDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type EnumDef.

+
+
+ + create_alias(Objref,Id,Name,Version,Original_type) -> Return + Create a AliasDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Original_type = #IFR_IDLType_Objref + Return = #IFR_AliasDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type AliasDef.

+
+
+ + create_interface(Objref,Id,Name,Version,Base_interfaces) -> Return + Create a InterfaceDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Base_interfaces = list() (a list of IFR_InterfaceDef_objrefs that this interface inherits from + Return = #IFR_InterfaceDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type InterfaceDef.

+
+
+ + create_exception(Objref,Id,Name,Version,Members) -> Return + Create a ExceptionDef IFR object + + Objref = #IFR_objref + Id = string() + Name = string() + Version = string() + Members = list() (list of structmember records) + Return = #IFR_ExceptionDef_objref + + +

Objref is an IFR object of any kind that inherits from + Container. Creates an IFR object of the type ExceptionDef.

+
+
+ + get_type(Objref) -> Return + Return the typecode of the target object + + Objref = #IFR_objref + Return = tuple() (a typecode tuple) + + +

Objref is an IFR object of any kind that inherits from + IDLType or an IFR object of the kind ConstantDef, + ExceptionDef or AttributeDef. Returns the typecode of the + IFR object.

+
+
+ + lookup_id(Objref,Search_id) -> Return + Return the IFR object matching the given id + + Objref = #IFR_Repository_objref + Search_id = string() + Return = #IFR_objref + + +

Returns an IFR object matching the Search_id.

+
+
+ + get_primitive(Objref,Kind) -> Return + Return a PrimitiveDef of the specified kind + + Objref = #IFR_Repository_objref + Kind = atom() (one of pk_null, pk_void, pk_short, pk_long, pk_ushort, pk_ulong, pk_float, pk_double, pk_boolean, pk_char, pk_octet, pk_any, pk_TypeCode, pk_Principal, pk_string, pk_wstring, pk_fixed, pk_objref) + Return = #IFR_PrimitiveDef_objref + + +

Returns a PrimitiveDef of the specified kind.

+
+
+ + create_string(Objref,Bound) -> Return + Create an IFR objref of the type StringDef + + Objref = #IFR_Repository_objref + Bound = integer() (unsigned long /= 0) + Return = #IFR_StringDef_objref + + +

Creates an IFR objref of the type StringDef.

+
+
+ + create_wstring(Objref,Bound) -> Return + Create an IFR objref of the type WstringDef + + Objref = #IFR_Repository_objref + Bound = integer() (unsigned long /= 0) + Return = #IFR_WstringDef_objref + + +

Creates an IFR objref of the type WstringDef.

+
+
+ + create_fixed(Objref,Digits,Scale) -> Return + Create an IFR objref of the type FixedDef + + Objref = #IFR_Repository_objref + Digits = Scale = integer() + Return = #IFR_FixedDef_objref + + +

Creates an IFR objref of the type FixedDef.

+
+
+ + create_sequence(Objref,Bound,Element_type) -> Return + Create an IFR objref of the type SequenceDef + + Objref = #IFR_Repository_objref + Bound = integer() (unsigned long) + Element_type = #IFR_IDLType_objref + Return = #IFR_SequenceDef_objref + + +

Creates an IFR objref of the type SequenceDef.

+
+
+ + create_array(Objref,Length,Element_type) -> Return + Create an IFR objref of the type ArrayDef + + Objref = #IFR_Repository_objref + Bound = integer() (unsigned long) + Element_type = #IFR_IDLType_objref + Return = #IFR_ArrayDef_objref + + +

Creates an IFR objref of the type ArrayDef.

+
+
+ + create_idltype(Objref,Typecode) -> Return + Create an IFR objref of the type IDLType + + Objref = #IFR_Repository_objref + Typecode = tuple() (a typecode tuple) + Return = #IFR_IDLType_objref + + +

Creates an IFR objref of the type IDLType.

+
+
+ + get_type_def(Objref) -> Return + Return an IFR object of the type IDLType describing the type of the target object + + Objref = #IFR_objref + Return = #IFR_IDLType_objref + + +

Objref is an IFR object of the kind ConstantDef or + AttributeDef. Returns an IFR object of the type IDLType + describing the type of the IFR object.

+
+
+ + set_type_def(Objref,TypeDef) -> Return + Set given TypeDef of the target object + + Objref = #IFR_objref + TypeDef = #IFR_IDLType_objref + Return = ok | {exception, _} + + +

Objref is an IFR object of the kind ConstantDef or + AttributeDef. Sets the type_def of the IFR Object.

+
+
+ + get_value(Objref) -> Return + Return the value attribute of the target ConstantDef object + + Objref = #IFR_ConstantDef_objref + Return = any() + + +

Returns the value attribute of an IFR Object of the type ConstantDef.

+
+
+ + set_value(Objref,Value) -> Return + Set the value attribute of the target ConstantDef object + + Objref = #IFR_ConstantDef_objref + Value = any() + Return = ok | {exception, _} + + +

Sets the value attribute of an IFR Object of the type ConstantDef.

+
+
+ + get_members(Objref) -> Return + Return the members of the target object + + Objref = #IFR_objref + Return = list() + + +

Objref is an IFR object the kind StructDef, UnionDef, + EnumDef or ExceptionDef. + For StructDef, UnionDef and ExceptionDef: Returns a list of + structmember records that are the constituent parts of the + object. + For EnumDef: Returns a list of strings describing the + enumerations.

+
+
+ + set_members(Objref,Members) -> Return + Set the members attribute of the target object + + Objref = #IFR_objref + Members = list() + Return = ok | {exception, _} + + +

Objref is an IFR object the kind StructDef, UnionDef, + EnumDef or ExceptionDef. + For StructDef, UnionDef and ExceptionDef: Members is a list + of structmember records. + For EnumDef: Members is a list of strings describing the + enumerations. + Sets the members attribute, which are the constituent parts of the + exception.

+
+
+ + get_discriminator_type(Objref) -> Return + Get the discriminator typecode of the target object + + Objref = #IFR_UnionDef_objref + Return = tuple() (a typecode tuple) + + +

Returns the discriminator typecode of an IFR object of the type + UnionDef.

+
+
+ + get_discriminator_type_def(Objref) -> Return + Return IDLType object describing the discriminator type of the target object + + Objref = #IFR_UnionDef_objref + Return = #IFR_IDLType_objref + + +

Returns an IFR object of the type IDLType describing the + discriminator type of an IFR object of the type UnionDef.

+
+
+ + set_discriminator_type_def(Objref,TypeDef) -> Return + Set the attribute discriminator_type_def for the target object to the given TypeDef + + Objref = #IFR_UnionDef_objref + Return = #IFR_IDLType_objref + + +

Sets the attribute discriminator_type_def, an IFR object of + the type IDLType describing the discriminator type of an IFR + object of the type UnionDef.

+
+
+ + get_original_type_def(Objref) -> Return + Return an IFR object of the type IDLType describing the original type + + Objref = #IFR_AliasDef_objref + Return = #IFR_IDLType_objref + + +

Returns an IFR object of the type IDLType describing the + original type.

+
+
+ + set_original_type_def(Objref,TypeDef) -> Return + Set the original_type_def attribute which describes the original type + + Objref = #IFR_AliasDef_objref + Typedef = #IFR_IDLType_objref + Return = ok | {exception, _} + + +

Sets the original_type_def attribute which describes the + original type.

+
+
+ + get_kind(Objref) -> Return + Return an atom describing the primitive type + + Objref = #IFR_PrimitiveDef_objref + Return = atom() + + +

Returns an atom describing the primitive type (See CORBA 2.0 + p 6-21).

+
+
+ + get_bound(Objref) -> Return + Get the maximum size of the target object + + Objref = #IFR_objref + Return = integer (unsigned long) + + +

Objref is an IFR object the kind StringDef or SequenceDef. + For StringDef: returns the maximum number of characters in + the string. + For SequenceDef: Returns the maximum number of elements in + the sequence. Zero indicates an unbounded sequence.

+
+
+ + set_bound(Objref,Bound) -> Return + Set the maximum size of the target object + + Objref = #IFR_objref + Bound = integer (unsigned long) + Return = ok | {exception, _} + + +

Objref is an IFR object the kind StringDef or SequenceDef. + For StringDef: Sets the maximum number of characters in the + string. Bound must not be zero. + For SequenceDef: Sets the maximum number of elements in the + sequence. Zero indicates an unbounded sequence.

+
+
+ + get_element_type(Objref) -> Return + Return the typecode of the elements in the IFR object + + Objref = #IFR_objref + Return = tuple() (a typecode tuple) + + +

Objref is an IFR object the kind SequenceDef or ArrayDef. + Returns the typecode of the elements in the IFR object.

+
+
+ + get_element_type_def(Objref) -> Return + Return an IFR object of the type IDLType describing the type of the elements in Objref + + Objref = #IFR_objref + Return = #IFR_IDLType_objref + + +

Objref is an IFR object the kind SequenceDef or ArrayDef. + Returns an IFR object of the type IDLType describing the + type of the elements in Objref.

+
+
+ + set_element_type_def(Objref,TypeDef) -> Return + Set the element_type_def attribute of the target object to the given TypeDef + + Objref = #IFR_objref + TypeDef = #IFR_IDLType_objref + Return = ok | {exception, _} + + +

Objref is an IFR object the kind SequenceDef or ArrayDef. + Sets the element_type_def attribute, an IFR object of the + type IDLType describing the type of the elements in Objref.

+
+
+ + get_length(Objref) -> Return + Return the number of elements in the array + + Objref = #IFR_ArrayDef_objref + Return = integer() (unsigned long) + + +

Returns the number of elements in the array.

+
+
+ + set_length(Objref,Length) -> Return + Set the number of elements in the array + + Objref = #IFR_ArrayDef_objref + Length = integer() (unsigned long) + + +

Sets the number of elements in the array.

+
+
+ + get_mode(Objref) -> Return + Get the mode of the target object (AttributeDef or OperationDef) + + Objref = #IFR_objref + Return = atom() + + +

Objref is an IFR object the kind AttributeDef or OperationDef. + For AttributeDef: Return is an atom ('ATTR_NORMAL' or + 'ATTR_READONLY') specifying the read/write access for this + attribute. + For OperationDef: Return is an atom ('OP_NORMAL' or + 'OP_ONEWAY') specifying the mode of the operation.

+
+
+ + set_mode(Objref,Mode) -> Return + Set the mode of the target object (AttributeDef or OperationDef) to the given mode + + Objref = #IFR_objref + Mode = atom() + Return = ok | {exception, _} + + +

Objref is an IFR object the kind AttributeDef or OperationDef. + For AttributeDef: Sets the read/write access for this + attribute. Mode is an atom ('ATTR_NORMAL' or + 'ATTR_READONLY'). + For OperationDef: Sets the mode of the operation. Mode is an + atom ('OP_NORMAL' or 'OP_ONEWAY').

+
+
+ + get_result(Objref) -> Return + Return typecode describing the type of the value returned by the operation + + Objref = #IFR_OperationDef_objref + Return = tuple() (a typecode tuple) + + +

Returns a typecode describing the type of the value returned by the + operation.

+
+
+ + get_result_def(Objref) -> Return + Return an IFR object of the type IDLType describing the type of the result + + Objref = #IFR_OperationDef_objref + Return = #IFR_IDLType_objref + + +

Returns an IFR object of the type IDLType describing the type of the + result.

+
+
+ + set_result_def(Objref,ResultDef) -> Return + Set the type_def attribute of the target object to the given ResultDef + + Objref = #IFR_OperationDef_objref + ResultDef = #IFR_IDLType_objref + Return = ok | {exception, _} + + +

Sets the type_def attribute, an IFR Object of the type IDLType + describing the result.

+
+
+ + get_params(Objref) -> Return + Return a list of parameter description records describing the parameters of the target OperationDef + + Objref = #IFR_OperationDef_objref + Return = list() (list of parameter description records) + + +

Returns a list of parameter description records, which describes the + parameters of the OperationDef.

+
+
+ + set_params(Objref,Params) -> Return + Set the params attribute of the target object to the given parameter description records + + Objref = #IFR_OperationDef_objref + Params = list() (list of parameter description records) + Return = ok | {exception, _} + + +

Sets the params attribute, a list of parameter description records.

+
+
+ + get_contexts(Objref) -> Return + Return a list of context identifiers for the operation + + Objref = #IFR_OperationDef_objref + Return = list() (list of strings) + + +

Returns a list of context identifiers for the operation.

+
+
+ + set_contexts(Objref,Contexts) -> Return + Set the context attribute for the operation + + Objref = #IFR_OperationDef_objref + Contexts = list() (list of strings) + Return = ok | {exception, _} + + +

Sets the context attribute for the operation.

+
+
+ + get_exceptions(Objref) -> Return + Return a list of exception types that can be raised by the target object + + Objref = #IFR_OperationDef_objref + Return = list() (list of #IFR_ExceptionDef_objrefs) + + +

Returns a list of exception types that can be raised by this + operation.

+
+
+ + set_exceptions(Objref,Exceptions) -> Return + Set the exceptions attribute for the target object + + Objref = #IFR_OperationDef_objref + Exceptions = list() (list of #IFR_ExceptionDef_objrefs) + Return = ok | {exception, _} + + +

Sets the exceptions attribute for this operation.

+
+
+ + get_base_interfaces(Objref) -> Return + Return a list of InterfaceDefs from which the target InterfaceDef object inherit + + Objref = #IFR_InterfaceDef_objref + Return = list() (list of #IFR_InterfaceDef_objrefs) + + +

Returns a list of InterfaceDefs from which this InterfaceDef inherits.

+
+
+ + set_base_interfaces(Objref,BaseInterfaces) -> Return + Set the BaseInterfaces attribute + + Objref = #IFR_InterfaceDef_objref + BaseInterfaces = list() (list of #IFR_InterfaceDef_objrefs) + Return = ok | {exception, _} + + +

Sets the BaseInterfaces attribute.

+
+
+ + is_a(Objref,Interface_id) -> Return + Return a boolean if the target InterfaceDef match or inherit from the given id + + Objref = #IFR_InterfaceDef_objref + Interface_id = #IFR_InterfaceDef_objref + Return = atom() (true or false) + + +

Returns true if the InterfaceDef either is identical to or + inherits from Interface_id.

+
+
+ + describe_interface(Objref) -> Return + Return a full inter face description record describing the InterfaceDef + + Objref = #IFR_InterfaceDef_objref + Return = tuple() (a fullinterfacedescription record) + + +

Returns a full inter face description record describing the InterfaceDef.

+
+
+ + create_attribute(Objref,Id,Name,Version,Type,Mode) -> Return + Create an IFR object of the type AttributeDef contained in the target InterfaceDef object + + Objref = #IFR_InterfaceDef_objref + Id = string() + Name = string() + Version = string() + Type = #IFR_IDLType_objref + Mode = atom() ('ATTR_NORMAL' or 'ATTR_READONLY') + Return = #IFR_AttributeDef_objref + + +

Creates an IFR object of the type AttributeDef contained in this + InterfaceDef.

+
+
+ + create_operation(Objref,Id,Name,Version,Result,Mode,Params, Exceptions,Contexts) -> Return + Create an IFR object of the type OperationDef contained in the target InterfaceDef object + + Objref = #IFR_InterfaceDef_objref + Id = string() + Name = string() + Version = string() + Result = #IFR_IDLType_objref + Mode = atom() ('OP_NORMAL' or 'OP_ONEWAY') + Params = list() (list of parameter description records) + Exceptions = list() (list of #IFR_ExceptionDef_objrefs) + Contexts = list() (list of strings) + Return = #IFR_OperationDef_objref + + +

Creates an IFR object of the type OperationDef contained in this + InterfaceDef.

+
+
+
+ +
+ -- cgit v1.2.3