Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: ucb ::

interface XDataContainer

Base Interface
com::sun::star::container::XIndexContainer

[ DEPRECATED ]
Description
specifies a container for (binary) data.

A data container may contain data and/or other data containers. A typical container with children is a MIME message with attachments.



Known Services which Export this Interface

com::sun::star::ucb::DataContainer [ DEPRECATED ]
specifies a container that can contain binary data and other data containers.

Methods' Summary

getContentType returns the content type (MIME Type) of the data container.
setContentType sets the content type (MIME Type) of the data container.
getData returns the data of the data container.
setData sets the data of the data container.
getDataURL [ DEPRECATED ]
Deprecated. Do not use!
setDataURL [ DEPRECATED ]
Deprecated. Do not use!

Methods' Details

getContentType
 
string
getContentType();
Description
returns the content type (MIME Type) of the data container.
Returns
the content type
setContentType
 
void
setContentType(
[ in ] string aType );

Description
sets the content type (MIME Type) of the data container.
Parameter aType
the content type
getData
 
sequence< byte >
getData();
Description
returns the data of the data container.
Returns
the data
setData
 
void
setData(
[ in ] sequence< byte > aData );

Description
sets the data of the data container.
Parameter aData
the data
getDataURL
 
string
getDataURL();
[ DEPRECATED ]
Description
Deprecated. Do not use!
setDataURL
 
void
setDataURL(
[ in ] string aURL );

[ DEPRECATED ]
Description
Deprecated. Do not use!

Top of Page