summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/system/XSimpleMailMessage.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/system/XSimpleMailMessage.idl')
-rw-r--r--offapi/com/sun/star/system/XSimpleMailMessage.idl15
1 files changed, 0 insertions, 15 deletions
diff --git a/offapi/com/sun/star/system/XSimpleMailMessage.idl b/offapi/com/sun/star/system/XSimpleMailMessage.idl
index d25a7a24f6de..70bf3533a5d8 100644
--- a/offapi/com/sun/star/system/XSimpleMailMessage.idl
+++ b/offapi/com/sun/star/system/XSimpleMailMessage.idl
@@ -33,11 +33,9 @@
#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/lang/IllegalArgumentException.idl>
-//=============================================================================
module com { module sun { module star { module system {
-//=============================================================================
/** This interface lets a client set or get the information of a simple mail
message.
*/
@@ -45,7 +43,6 @@ module com { module sun { module star { module system {
published interface XSimpleMailMessage: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** To set the recipient of the simple mail message.
@param aRecipient
The email address of a recipient. The method doesn't check if
@@ -53,7 +50,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
void setRecipient( [in] string aRecipient );
- //-------------------------------------------------------------------------
/** To get the recipient of the simple mail message.
@returns
The specified email address of a recipient
@@ -61,7 +57,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
string getRecipient( );
- //-------------------------------------------------------------------------
/** To set the cc recipients of a simple mail message.
@param aCcRecipient
@@ -71,7 +66,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
void setCcRecipient( [in] sequence< string > aCcRecipient );
- //-------------------------------------------------------------------------
/** To get the cc recipients of a simple mail message.
@returns
A sequence with the email addresses of one or more cc recipients.
@@ -79,7 +73,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
sequence< string > getCcRecipient( );
- //-------------------------------------------------------------------------
/** To set the BCC recipient of a simple mail message.
@param aBccRecipient
A sequence with the email addresses of one or more BCC recipients. An empty
@@ -87,7 +80,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
void setBccRecipient( [in] sequence< string > aBccRecipient );
- //-------------------------------------------------------------------------
/** To get the BCC recipients of a simple mail message.
@returns
A sequence with the email addresses of one or more BCC recipients.
@@ -95,14 +87,12 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
sequence< string > getBccRecipient( );
- //-------------------------------------------------------------------------
/** To set the email address of the originator of a simple mail message.
@param aOriginator
Sets the email address of the originator of the mail.
*/
void setOriginator( [in] string aOriginator );
- //-------------------------------------------------------------------------
/** To get the email address of the originator of a simple mail message.
@returns
The email address of the originator of the mail.
@@ -110,14 +100,12 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
string getOriginator( );
- //-------------------------------------------------------------------------
/** To set the subject of a simple mail message.
@param aSubject
Sets the subject of the simple mail message.
*/
void setSubject( [in] string aSubject );
- //-------------------------------------------------------------------------
/** To get the subject of a simple mail message.
@returns
The subject of the simple mail message.
@@ -125,7 +113,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
*/
string getSubject( );
- //-------------------------------------------------------------------------
/** To set an attachment of a simple mail message.
@param aAttachement
Sets a sequence of file URLs specifying the files that should be
@@ -140,7 +127,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
void setAttachement( [in] sequence< string > aAttachement )
raises( ::com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** To get the attachment of a simple mail message.
@returns
A sequence of file URLs specifying the files that should be attached to
@@ -150,7 +136,6 @@ published interface XSimpleMailMessage: com::sun::star::uno::XInterface
sequence< string > getAttachement( );
};
-//=============================================================================
}; }; }; };