Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)

107541: Merged 5.0.N (5.0.3) to HEAD-BUG-FIX (5.1/Cloud) (PARTIAL MERGE)
      107413: Merged DEV to 5.0.N (5.0.3)
         106858 : MNT-13545: JavaDoc : Inconsistencies between the Java doc and the actual code
            - Cleaning of Javadoc,
   107565: MNT-13545 Fix compilation after merge of Javadoc


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@107633 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tatyana Valkevych
2015-07-02 16:13:03 +00:00
parent 4c30e52dc3
commit 7dd2291753
784 changed files with 5454 additions and 5487 deletions

View File

@@ -60,14 +60,14 @@ public abstract class AbstractImapFolder implements MailFolder
{
this.serviceRegistry = serviceRegistry;
}
/**
* Method that checks mandatory parameter.
* @param parameter The parameter instance to check.
* @param name The name of the parameter.
*/
protected void checkParameter(Object parameter, String name)
{
/**
* Method that checks mandatory parameter.
* @param parameter The parameter instance to check.
* @param name The name of the parameter.
*/
protected void checkParameter(Object parameter, String name)
{
if (parameter == null)
{
throw new IllegalArgumentException(name + " parameter is null.");
@@ -81,7 +81,7 @@ public abstract class AbstractImapFolder implements MailFolder
* @param message - message.
* @param flags - message flags.
* @param internalDate - not used. Current date used instead.
* @return
* @return long
*/
public long appendMessage(final MimeMessage message, final Flags flags, final Date internalDate) throws FolderException
{
@@ -127,7 +127,7 @@ public abstract class AbstractImapFolder implements MailFolder
}
/**
* Marks all messages in the folder as deleted using {@link Flags.Flag#DELETED} flag.
* Marks all messages in the folder as deleted using {@link javax.mail.Flags.Flag#DELETED} flag.
*/
public void deleteAllMessages() throws FolderException
{
@@ -145,7 +145,7 @@ public abstract class AbstractImapFolder implements MailFolder
/**
* Deletes messages marked with {@link Flags.Flag#DELETED}. Note that this message deletes all messages with this flag.
* Deletes messages marked with {@link javax.mail.Flags.Flag#DELETED}. Note that this message deletes all messages with this flag.
*/
public void expunge() throws FolderException
{
@@ -165,7 +165,7 @@ public abstract class AbstractImapFolder implements MailFolder
}
/**
* Deletes messages marked with {@link Flags.Flag#DELETED}. Note that this message deletes the messages with current uid
* Deletes messages marked with {@link javax.mail.Flags.Flag#DELETED}. Note that this message deletes the messages with current uid
*/
public void expunge(final long uid) throws FolderException
{
@@ -238,7 +238,7 @@ public abstract class AbstractImapFolder implements MailFolder
}
/**
* Returns the list of messages that have no {@link Flags.Flag#DELETED} flag set for current user.
* Returns the list of messages that have no {@link javax.mail.Flags.Flag#DELETED} flag set for current user.
*
* @return the list of non-deleted messages.
*/