This interface is a part of the names library which is used to hide the representation of names. In Orbers Erlang mapping the pseudo-object names and the real IDL names have the same representation but it is desirable that the clients uses the names library so they will not be dependent of the representation. The lname interface supports handling of names e.g. adding and removing name components.
Note that the lname interface in orber does not contain a destroy function because the Names are represented as standard Erlang lists and therefor will be removed by the garbage collector when not in use.
The type
-record('CosNaming_NameComponent', {id, kind=""}).
The record is defined in the file
-include_lib("orber/COSS/CosNaming/CosNaming.hrl").
This function returns a new name.
This function returns a name where the new name component has been inserted as
component
This function returns the
This function deletes the
This function returns a the number of name components in Name.
This function returns true if the two names are equal and false otherwise.
This function returns true if Name1 are lesser than Name2 and false otherwise.
This function just checks if Name is a correct IDL name before returning it because the name representation is the same for pseudo and IDL names in orber.
This function just returns the Name because the name representation is the same for pseudo and IDL names in orber.