1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Javadoc comment

This commit is contained in:
Fiouz 2010-09-12 06:11:08 +00:00
parent c8a5de7abd
commit e16a79d08c

View File

@ -161,6 +161,14 @@ public abstract class Message implements Part, Body
return mFlags.toArray(EMPTY_FLAG_ARRAY);
}
/**
* @param flag
* Flag to set. Never <code>null</code>.
* @param set
* If <code>true</code>, the flag is added. If <code>false</code>
* , the flag is removed.
* @throws MessagingException
*/
public void setFlag(Flag flag, boolean set) throws MessagingException
{
if (set)