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

[369 byte] By [marcbowden] at [2007-9-26 5:53:01]
# 1

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

dkramer at 2007-7-1 14:22:23 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...