diff options
author | slewis | 2007-10-26 02:39:28 +0000 |
---|---|---|
committer | slewis | 2007-10-26 02:39:28 +0000 |
commit | f5b6ae4c1fa23aa4efcdda69aa41a9d2fd534644 (patch) | |
tree | 2710cc8b9dce16b4fe960fa01babdfa4f7f0aa65 /incubation | |
parent | def9cc0477d76fcc1c336d31a922fa7ab2b65605 (diff) | |
download | org.eclipse.ecf-f5b6ae4c1fa23aa4efcdda69aa41a9d2fd534644.tar.gz org.eclipse.ecf-f5b6ae4c1fa23aa4efcdda69aa41a9d2fd534644.tar.xz org.eclipse.ecf-f5b6ae4c1fa23aa4efcdda69aa41a9d2fd534644.zip |
Fixed errors in javadocs
Diffstat (limited to 'incubation')
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(); |