DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5494>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5494

Javadoc sourcefiles does not support line breaks

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX



------- Additional Comments From [EMAIL PROTECTED]  2002-04-02 14:46 -------
To answer you last question first, sourcepath is a path, you can specify several
source directories at once, so this is correct.

I don't think that embeded newlines in an attribute that expects a comma 
separated
list work in any Ant task, so at least this behavior is consistent. 8-)

If you want to make your javadoc more readable, why don't you use nested
<source> elements?

<javadoc 
        sourcepath="${src}/com/keymoneyplayers/registry"
        defaultexcludes="yes"
        destdir="${build}/api"
        author="true"
        use="true"
        windowtitle="Registry API">
  <doctitle><![CDATA[<h1>Registry</h1>]]></doctitle>
  <bottom><![CDATA[<i>Copyright &#169; 2001 Sloan Seaman. All Rights
Reserved.</i>]]></bottom>
  <group title="Group 1 Packages" packages="com.keymoneyplayers.registry*"/>

  <source file="${src}/com/keymoneyplayers/registry/*.java" />
  <source file="${src}/com/keymoneyplayers/registry/file/*.java" />
  <source file="${src}/com/keymoneyplayers/registry/timed/*.java" />
</javadoc>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to