You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2002/04/02 16:46:59 UTC

DO NOT REPLY [Bug 5494] - Javadoc sourcefiles does not support line breaks

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

bodewig@apache.org changed:

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



------- Additional Comments From bodewig@apache.org  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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>