Warning: Leaving out empty argument '-windowtitle'

When I generated a javaDoc for my project I received the following Warning: Leaving out empty argument '-windowtitle'Could someone please explain to me what is that warning and how to fix it?Thanks in advance
[238 byte] By [Ken@Javaa] at [2007-11-27 4:42:27]
# 1

The -windowtitle option requires an argument. It sounds like your javadoc command has the -windowtitle option with no argument.

http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#windowtitle

If it's not clear, show us your command and we can figure it out.

-Doug

dhkramera at 2007-7-12 9:54:01 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
I am using NetBeans to generate JavaDoc, so I don't know how to set the -windowtitle with NetBeans.
Ken@Javaa at 2007-7-12 9:54:01 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3

I too am generating my javadoc files from Netbeans and I get the same message. However, my javadoc is generated fine, so my advice is not to worry about it!

The documentation says:

-windowtitle

Specifies the title to be placed in the HTML <title> tag. This appears in the window title and in any browser bookmarks (favorite places) that someone creates for this page. This title should not contain any HTML tags, as the browser will not properly interpret them. Any internal quotation marks within title may have to be escaped. If -windowtitle is omitted, the Javadoc tool uses the value of -doctitle for this option.

clairec666a at 2007-7-12 9:54:01 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...