fable.gui.dialog
Class MailDialogData

java.lang.Object
  extended by fable.gui.dialog.MailDialogData

public class MailDialogData
extends java.lang.Object

This class represents information gathered in the MailDialog.

Author:
Wonsik Kim

Field Summary
 boolean attachPDF
          true if a user wants to attach a PDF file to the mail.
 java.lang.String body
          body of the mail.
 java.lang.String name
          name of the sender.
 java.util.List<java.lang.String> reciepients
          list of email address of recipients.
 boolean sendAsText
          true if a user wants to send the mail as text.
 java.lang.String subject
          subject of the mail.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public final java.lang.String name
name of the sender.


reciepients

public final java.util.List<java.lang.String> reciepients
list of email address of recipients.


subject

public final java.lang.String subject
subject of the mail.


attachPDF

public final boolean attachPDF
true if a user wants to attach a PDF file to the mail.


sendAsText

public final boolean sendAsText
true if a user wants to send the mail as text.


body

public final java.lang.String body
body of the mail.