Author: clr
Date: Sun Aug 6 12:46:51 2006
New Revision: 429182
URL: http://svn.apache.org/viewvc?rev=429182&view=rev
Log:
JDO-402 Updated javadoc for change in getGroups
Modified:
db/jdo/trunk/api20/src/java/javax/jdo/FetchPlan.java
Modified: db/jdo/trunk/api20/src/java/javax/jdo/FetchPlan.java
URL: http://svn.apache.org/viewvc/db/jdo/trunk/api20/src/java/javax/jdo/FetchPlan.java?rev=429182&r1=429181&r2=429182&view=diff
==============================================================================
--- db/jdo/trunk/api20/src/java/javax/jdo/FetchPlan.java (original)
+++ db/jdo/trunk/api20/src/java/javax/jdo/FetchPlan.java Sun Aug 6 12:46:51 2006
@@ -107,10 +107,12 @@
FetchPlan clearGroups();
/**
- * Return an immutable collection containing the names
- * of all active fetch groups.
- * @return an immutable collection containing the names
- * of all active fetch groups
+ * Return an immutable Set containing the names
+ * of all active fetch groups. The Set is a copy of
+ * the currently active groups and will not change
+ * based on subsequent changes to the groups.
+ * @return an immutable Set containing the names
+ * of all currently active fetch groups
* @since 2.0
*/
Set getGroups();
|