Open GoogleCodeExporter opened 8 years ago
Just realized it attached to my gmail account. I meant to use my corp account
minz@google.com . Please keep me posted on its progress.
Original comment by minzho...@gmail.com
on 18 Feb 2009 at 7:20
Will do. Thanks for the report!
Original comment by ecc%google.com@gtempaccount.com
on 2 Mar 2009 at 4:11
Hey Minz,
getChildCount is a method in FastTreeItem which returns the number of children
items
"this" has:
public int getChildCount() {
if (children == null) {
return 0;
}
return children.size();
}
getItemCount is a method on FastTree which returns the number of children items
the
root has by calling getChildCount on the root item, so it's a convenience
method.
I guess I'm not exactly sure what you want changed. I don't see the javadoc in
the
code for getChildCount, where do you see it?
Also "minz@google.com" doesn't seem to exist...
Original comment by nwolf+legacy@google.com
on 27 Mar 2009 at 2:35
I see both getChildCount() and getItemCount() as methods on FastTree.
http://code.google.com/p/google-web-toolkit-incubator/source/browse/trunk/src/co
m/google/gwt/widgetideas/client/FastTree.java?spec=svn1372&r=1372
In this file:
@290-292
public int getChildCount() {
return root.getChildCount();
}
@308-315
/**
* Gets the number of items contained at the root of this tree.
*
* @return this tree's item count
*/
public int getItemCount() {
return root.getChildCount();
}
Original comment by minzho...@gmail.com
on 27 Mar 2009 at 10:09
Original issue reported on code.google.com by
minzho...@gmail.com
on 18 Feb 2009 at 7:14