Author: scolebourne
Date: Sat Mar 25 05:08:42 2006
New Revision: 388748

URL: http://svn.apache.org/viewcvs?rev=388748&view=rev
Log:
Javadoc

Modified:
    
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java

Modified: 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java?rev=388748&r1=388747&r2=388748&view=diff
==============================================================================
--- 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java
 (original)
+++ 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java
 Sat Mar 25 05:08:42 2006
@@ -482,9 +482,10 @@
     }
 
     /**
-     * Method that can be overridden if you don't
-     * want to create a MimeBodyPart.
-     * @return
+     * Creates a body part object.
+     * Can be overridden if you don't want to create a BodyPart.
+     *
+     * @return the created body part
      */
     protected BodyPart createBodyPart()
     {
@@ -492,8 +493,9 @@
         return bodyPart;
     }
     /**
+     * Creates a mime multipart object.
      *
-     * @return
+     * @return the created mime part
      */
     protected MimeMultipart createMimeMultipart()
     {
@@ -502,7 +504,9 @@
     }
 
     /**
-     * @return boolHasAttachments
+     * Checks whether there are attachments.
+     *
+     * @return true if there are attachments
      * @since 1.0
      */
     public boolean isBoolHasAttachments()
@@ -511,7 +515,9 @@
     }
 
     /**
-     * @param b boolHasAttachments
+     * Sets whether there are attachments.
+     *
+     * @param b  the attachments flag
      * @since 1.0
      */
     public void setBoolHasAttachments(boolean b)
@@ -520,8 +526,9 @@
     }
 
     /**
+     * Checks if this object is initialized.
      *
-     * @return
+     * @return true if initialized
      */
     protected boolean isInitialized()
     {
@@ -529,8 +536,9 @@
     }
 
     /**
+     * Sets the initialized status of this object.
      *
-     * @param b
+     * @param b  the initialized status flag
      */
     protected void setInitialized(boolean b)
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to