Making Ant targets private in Eclipse
In the Eclipse Ant view, there is a button called "Hide Internal Targets". However, Eclipse doesn't make it obvious how an internal target is defined.
It turns out that an internal target is any target which does not have a description. Such targets are not printed when using 'ant -projecthelp', and thus do not show up in the list.
So, ideally, our ant scripts would list descriptions only for items which we want people to run. That way "private" targets would be hidden.
See also: http://www.nabble.com/private-targets-td15556669.html