:: com :: sun :: star :: uri ::

interface XExternalUriReferenceTranslator

Methods' Summary
translateToInternal returns the internal counterpart of an external URI reference.  
translateToExternal returns the external counterpart of an internal URI reference.  
Methods' Details
translateToInternal
string
translateToInternal( [in] string  externalUriReference );

Description
returns the internal counterpart of an external URI reference.
Parameter externalUriReference
an external URI reference.
Returns
the internal counterpart of the given external URI reference. An empty string is returned if the given external URI reference either is an empty string or cannot be converted (for example, because it contains illegal characters).
translateToExternal
string
translateToExternal( [in] string  internalUriReference );

Description
returns the external counterpart of an internal URI reference.
Parameter internalUriReference
an internal URI reference.
Returns
the external counterpart of the given internal URI reference. An empty string is returned if the given internal URI reference either is an empty string or cannot be converted (for example, because it contains illegal characters).
Top of Page