Wanted: String not java.lang.String
A v simple Q I guess, but can someone tell me why when I do a javadoc I get it looking like this,
with a fully qualified class name, and how can I get just eg 'String' output?
Unit(java.lang.String dummyNodeName)
This is the sort of think I would like to get (taken from Textfield):
setText(String t)
Danke!
Marc
You'll be happy to know that Javadoc 1.4 Beta 2 has a new feature
called -noqualifier that does exactly this:
http://java.sun.com/j2se/1.4/docs/tooldocs/win32/javadoc.html#noqualifier
For example:
-noqualifier all
prevents the package name from prefixing the class name everywhere.
Or you prevent them at the package level.
Prior to -noqualifier, there was no control over this.
-Doug Kramer
Javadoc team