:: com :: sun :: star :: rdf ::

service URI
Supported Interface
XURI


Constructors' Summary
create creates a URI RDF node.  
createNS creates a URI RDF node from namespace prefix and local name.  
createKnown creates a URI RDF node for a well-known URI.  
Constructors' Details
create
create( [in] string  Value )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a URI RDF node.
Parameter Value
the URI, represented as `string`.
Throws
com::sun::star::lang::IllegalArgumentException if the argument does not represent a valid URI
createNS
createNS( [in] string  Namespace,
[in] string  LocalName )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a URI RDF node from namespace prefix and local name.
Parameter Namespace
the namespace prefix of the URI, represented as `string`.
Parameter LocalName
the local name of the URI, represented as `string`.
Throws
com::sun::star::lang::IllegalArgumentException if the arguments do not represent a valid URI
createKnown
createKnown( [in] short  Id )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a URI RDF node for a well-known URI.
Parameter Id
the URI, represented as a constant from URIs.
Throws
com::sun::star::lang::IllegalArgumentException if the argument is not a valid constant from URIs
See also
URIs

 
Top of Page