diff options
2 files changed, 3 insertions, 3 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMember.java b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMember.java index 31b9a5b6b..986728518 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMember.java +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMember.java @@ -24,7 +24,7 @@ public interface IMember extends IBBObject { * Returns true if the forum member is also a member of the group. * * @param group - * @return + * @return <code>true</code> if this is member of given group, <code>false</code> otherwise. */ public boolean isMemberOf(IMemberGroup group); @@ -33,7 +33,7 @@ public interface IMember extends IBBObject { * * Note: this method may return only a partial list. * - * @return + * @return Collection of groups associated with this member. */ public Collection getGroups(); } diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMessageBase.java b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMessageBase.java index 37d4f3b4d..98eea8f5e 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMessageBase.java +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/IMessageBase.java @@ -24,7 +24,7 @@ public interface IMessageBase extends IBBObject { * * TODO Design timezone handling. * - * @return + * @return date that the message was posted. */ public Date getTimePosted(); |