--
jvz.
Jason van Zyl + /**
+ * Loops through all of the Groups and checks to see if
+ * the data within the Group is valid.
+ */
public boolean isAllValid()
{
boolean allValid = true;
Iterator iter = groups.values().iterator();
while (iter.hasNext())
{
- Group group = (Group)iter.next();
+ Group group = (Group) iter.next();
allValid &= group.isAllValid();
}
return allValid;
}
[EMAIL PROTECTED]
http://tambora.zenplex.org
In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
-- Jacques Ellul, The Technological Society
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>