create javadoc

View: New views
14 Messages — Rating Filter:   Alert me  

create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,
I am trying to create a build of a java project what use classes from
another project in the workspace..
when I run the javadoc task..I see things like

project/package/MyClass.java   warning - Tag @see: reference not found:
com.bla.bla.bla

where com.bla.bla.bla is the referencied classes.
How can I correct the reference?
thanks.
--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


You need to fix your classpath to include the other project's classes...

On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:

> Hello,
> I am trying to create a build of a java project what use classes from
> another project in the workspace..
> when I run the javadoc task..I see things like
>
> project/package/MyClass.java   warning - Tag @see: reference not found:
> com.bla.bla.bla
>
> where com.bla.bla.bla is the referencied classes.
> How can I correct the reference?
> thanks.
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

AW: create javadoc

by Jan.Materne :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ant with 'classpath' he meant the one for the <javadoc> task:
   <javadoc ... classpath=""/>

Because your source files depends on these libraries you should have
defined them somewhere before:
   <path id="cp"><fileset .../></path>
   <javac .... classpathref="cp"/>
then reuse that
   <javadoc ... classpathref="cp"/>


Jan

>-----Ursprüngliche Nachricht-----
>Von: Scot P. Floess [mailto:sfloess@...]
>Gesendet: Dienstag, 27. Oktober 2009 21:29
>An: Ant Users List
>Betreff: Re: create javadoc
>
>
>You need to fix your classpath to include the other project's
>classes...
>
>On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>
>> Hello,
>> I am trying to create a build of a java project what use classes from
>> another project in the workspace..
>> when I run the javadoc task..I see things like
>>
>> project/package/MyClass.java   warning - Tag @see: reference
>not found:
>> com.bla.bla.bla
>>
>> where com.bla.bla.bla is the referencied classes.
>> How can I correct the reference?
>> thanks.
>> --
>>  Júlio Cesar Bueno Cotta
>> Graduando em ciência da computação
>>   Universidade Federal de Viçosa
>>
>
>Scot P. Floess
>27 Lake Royale
>Louisburg, NC  27549
>
>252-478-8087 (Home)
>919-890-8117 (Work)
>
>Chief Architect JPlate   http://sourceforge.net/projects/jplate
>Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
>Architect Keros          http://sourceforge.net/projects/keros
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...


Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Hee - yep that is what I meant.  Sorry I was sorta rushed in my response
;)

On Wed, 28 Oct 2009, Jan.Materne@... wrote:

> Ant with 'classpath' he meant the one for the <javadoc> task:
>   <javadoc ... classpath=""/>
>
> Because your source files depends on these libraries you should have
> defined them somewhere before:
>   <path id="cp"><fileset .../></path>
>   <javac .... classpathref="cp"/>
> then reuse that
>   <javadoc ... classpathref="cp"/>
>
>
> Jan
>
>> -----Ursprüngliche Nachricht-----
>> Von: Scot P. Floess [mailto:sfloess@...]
>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>> An: Ant Users List
>> Betreff: Re: create javadoc
>>
>>
>> You need to fix your classpath to include the other project's
>> classes...
>>
>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>
>>> Hello,
>>> I am trying to create a build of a java project what use classes from
>>> another project in the workspace..
>>> when I run the javadoc task..I see things like
>>>
>>> project/package/MyClass.java   warning - Tag @see: reference
>> not found:
>>> com.bla.bla.bla
>>>
>>> where com.bla.bla.bla is the referencied classes.
>>> How can I correct the reference?
>>> thanks.
>>> --
>>>  Júlio Cesar Bueno Cotta
>>> Graduando em ciência da computação
>>>   Universidade Federal de Viçosa
>>>
>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

Re: AW: create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks all for the answers.
but I need more help
If I have just the .jar of the other project must to work in the same way?
I had try using
            <path id="the-path">
            <fileset dir="${the-project}/" includes="/src/main/**/*"/>
            </path>
        <javadoc access="public" author="on" classpathref="the-path"

But still is the same..
 warning - Tag @see: reference not found: bla.bla1.bla2.bla3#getXsltFile()

the files are in The_Project/src/main/bla.bla1.bla2

Need I to charge the classes or something like this?


2009/10/28 Scot P. Floess <sfloess@...>

>
> Hee - yep that is what I meant.  Sorry I was sorta rushed in my response ;)
>
>
> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>
>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>  <javadoc ... classpath=""/>
>>
>> Because your source files depends on these libraries you should have
>> defined them somewhere before:
>>  <path id="cp"><fileset .../></path>
>>  <javac .... classpathref="cp"/>
>> then reuse that
>>  <javadoc ... classpathref="cp"/>
>>
>>
>> Jan
>>
>>  -----Ursprüngliche Nachricht-----
>>> Von: Scot P. Floess [mailto:sfloess@...]
>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>> An: Ant Users List
>>> Betreff: Re: create javadoc
>>>
>>>
>>> You need to fix your classpath to include the other project's
>>> classes...
>>>
>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>
>>>  Hello,
>>>> I am trying to create a build of a java project what use classes from
>>>> another project in the workspace..
>>>> when I run the javadoc task..I see things like
>>>>
>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>
>>> not found:
>>>
>>>> com.bla.bla.bla
>>>>
>>>> where com.bla.bla.bla is the referencied classes.
>>>> How can I correct the reference?
>>>> thanks.
>>>> --
>>>>  Júlio Cesar Bueno Cotta
>>>> Graduando em ciência da computação
>>>>  Universidade Federal de Viçosa
>>>>
>>>>
>>> Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-890-8117 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>>
>>
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
>
> 252-478-8087 (Home)
> 919-890-8117 (Work)
>
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
> Architect Keros          http://sourceforge.net/projects/keros
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>



--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


This may be your problem in your fileset...

Change:
   <fileset dir="${the-project}/" includes="/src/main/**/*"/>

To:
   <fileset dir = "${the-project}" includes = "src/main/**/*"/>

I note you list /src vs src

If that doesn't work, try:

<path id="the-path">
   <pathelement location = "${the-project}/src/main"/>
</path>


On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:

> Thanks all for the answers.
> but I need more help
> If I have just the .jar of the other project must to work in the same way?
> I had try using
>            <path id="the-path">
>            <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>            </path>
>        <javadoc access="public" author="on" classpathref="the-path"
>
> But still is the same..
> warning - Tag @see: reference not found: bla.bla1.bla2.bla3#getXsltFile()
>
> the files are in The_Project/src/main/bla.bla1.bla2
>
> Need I to charge the classes or something like this?
>
>
> 2009/10/28 Scot P. Floess <sfloess@...>
>
>>
>> Hee - yep that is what I meant.  Sorry I was sorta rushed in my response ;)
>>
>>
>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>
>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>  <javadoc ... classpath=""/>
>>>
>>> Because your source files depends on these libraries you should have
>>> defined them somewhere before:
>>>  <path id="cp"><fileset .../></path>
>>>  <javac .... classpathref="cp"/>
>>> then reuse that
>>>  <javadoc ... classpathref="cp"/>
>>>
>>>
>>> Jan
>>>
>>>  -----Ursprüngliche Nachricht-----
>>>> Von: Scot P. Floess [mailto:sfloess@...]
>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>> An: Ant Users List
>>>> Betreff: Re: create javadoc
>>>>
>>>>
>>>> You need to fix your classpath to include the other project's
>>>> classes...
>>>>
>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>
>>>>  Hello,
>>>>> I am trying to create a build of a java project what use classes from
>>>>> another project in the workspace..
>>>>> when I run the javadoc task..I see things like
>>>>>
>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>
>>>> not found:
>>>>
>>>>> com.bla.bla.bla
>>>>>
>>>>> where com.bla.bla.bla is the referencied classes.
>>>>> How can I correct the reference?
>>>>> thanks.
>>>>> --
>>>>>  Júlio Cesar Bueno Cotta
>>>>> Graduando em ciência da computação
>>>>>  Universidade Federal de Viçosa
>>>>>
>>>>>
>>>> Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-890-8117 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@...
>>> For additional commands, e-mail: user-help@...
>>>
>>>
>>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>
>
>
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

Re: AW: create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks again Scot, but still the same.
:(

2009/10/28 Scot P. Floess <sfloess@...>

>
> This may be your problem in your fileset...
>
> Change:
>
>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>
> To:
>
>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>
> I note you list /src vs src
>
> If that doesn't work, try:
>
> <path id="the-path">
>  <pathelement location = "${the-project}/src/main"/> </path>
>
>
>
> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>
>  Thanks all for the answers.
>> but I need more help
>> If I have just the .jar of the other project must to work in the same way?
>> I had try using
>>           <path id="the-path">
>>           <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>           </path>
>>       <javadoc access="public" author="on" classpathref="the-path"
>>
>> But still is the same..
>> warning - Tag @see: reference not found: bla.bla1.bla2.bla3#getXsltFile()
>>
>> the files are in The_Project/src/main/bla.bla1.bla2
>>
>> Need I to charge the classes or something like this?
>>
>>
>> 2009/10/28 Scot P. Floess <sfloess@...>
>>
>>
>>> Hee - yep that is what I meant.  Sorry I was sorta rushed in my response
>>> ;)
>>>
>>>
>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>
>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>
>>>>  <javadoc ... classpath=""/>
>>>>
>>>> Because your source files depends on these libraries you should have
>>>> defined them somewhere before:
>>>>  <path id="cp"><fileset .../></path>
>>>>  <javac .... classpathref="cp"/>
>>>> then reuse that
>>>>  <javadoc ... classpathref="cp"/>
>>>>
>>>>
>>>> Jan
>>>>
>>>>  -----Ursprüngliche Nachricht-----
>>>>
>>>>> Von: Scot P. Floess [mailto:sfloess@...]
>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>> An: Ant Users List
>>>>> Betreff: Re: create javadoc
>>>>>
>>>>>
>>>>> You need to fix your classpath to include the other project's
>>>>> classes...
>>>>>
>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>
>>>>>  Hello,
>>>>>
>>>>>> I am trying to create a build of a java project what use classes from
>>>>>> another project in the workspace..
>>>>>> when I run the javadoc task..I see things like
>>>>>>
>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>
>>>>>>  not found:
>>>>>
>>>>>  com.bla.bla.bla
>>>>>>
>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>> How can I correct the reference?
>>>>>> thanks.
>>>>>> --
>>>>>>  Júlio Cesar Bueno Cotta
>>>>>> Graduando em ciência da computação
>>>>>>  Universidade Federal de Viçosa
>>>>>>
>>>>>>
>>>>>>  Scot P. Floess
>>>>> 27 Lake Royale
>>>>> Louisburg, NC  27549
>>>>>
>>>>> 252-478-8087 (Home)
>>>>> 919-890-8117 (Work)
>>>>>
>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>
>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>
>>>>>
>>>>>  ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>> For additional commands, e-mail: user-help@...
>>>>
>>>>
>>>>
>>>>  Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-890-8117 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@...
>>> For additional commands, e-mail: user-help@...
>>>
>>>
>>
>>
>> --
>>  Júlio Cesar Bueno Cotta
>> Graduando em ciência da computação
>>  Universidade Federal de Viçosa
>>
>>
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
>
> 252-478-8087 (Home)
> 919-890-8117 (Work)
>
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
> Architect Keros          http://sourceforge.net/projects/keros
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>



--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Oops - may need to adjust the sourcepathref ;)

<path id="the-path">
   <pathelement location = "${the-project}/src/main"/>
</path>

<javadoc access="public" author="on" sourcepathref="the-path"

Sorry about that :)

On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:

> Thanks again Scot, but still the same.
> :(
>
> 2009/10/28 Scot P. Floess <sfloess@...>
>
>>
>> This may be your problem in your fileset...
>>
>> Change:
>>
>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>
>> To:
>>
>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>
>> I note you list /src vs src
>>
>> If that doesn't work, try:
>>
>> <path id="the-path">
>>  <pathelement location = "${the-project}/src/main"/> </path>
>>
>>
>>
>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>
>>  Thanks all for the answers.
>>> but I need more help
>>> If I have just the .jar of the other project must to work in the same way?
>>> I had try using
>>>           <path id="the-path">
>>>           <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>           </path>
>>>       <javadoc access="public" author="on" classpathref="the-path"
>>>
>>> But still is the same..
>>> warning - Tag @see: reference not found: bla.bla1.bla2.bla3#getXsltFile()
>>>
>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>
>>> Need I to charge the classes or something like this?
>>>
>>>
>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>
>>>
>>>> Hee - yep that is what I meant.  Sorry I was sorta rushed in my response
>>>> ;)
>>>>
>>>>
>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>
>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>
>>>>>  <javadoc ... classpath=""/>
>>>>>
>>>>> Because your source files depends on these libraries you should have
>>>>> defined them somewhere before:
>>>>>  <path id="cp"><fileset .../></path>
>>>>>  <javac .... classpathref="cp"/>
>>>>> then reuse that
>>>>>  <javadoc ... classpathref="cp"/>
>>>>>
>>>>>
>>>>> Jan
>>>>>
>>>>>  -----Ursprüngliche Nachricht-----
>>>>>
>>>>>> Von: Scot P. Floess [mailto:sfloess@...]
>>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>> An: Ant Users List
>>>>>> Betreff: Re: create javadoc
>>>>>>
>>>>>>
>>>>>> You need to fix your classpath to include the other project's
>>>>>> classes...
>>>>>>
>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>
>>>>>>  Hello,
>>>>>>
>>>>>>> I am trying to create a build of a java project what use classes from
>>>>>>> another project in the workspace..
>>>>>>> when I run the javadoc task..I see things like
>>>>>>>
>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>
>>>>>>>  not found:
>>>>>>
>>>>>>  com.bla.bla.bla
>>>>>>>
>>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>>> How can I correct the reference?
>>>>>>> thanks.
>>>>>>> --
>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>> Graduando em ciência da computação
>>>>>>>  Universidade Federal de Viçosa
>>>>>>>
>>>>>>>
>>>>>>>  Scot P. Floess
>>>>>> 27 Lake Royale
>>>>>> Louisburg, NC  27549
>>>>>>
>>>>>> 252-478-8087 (Home)
>>>>>> 919-890-8117 (Work)
>>>>>>
>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>
>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>
>>>>>>
>>>>>>  ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>> For additional commands, e-mail: user-help@...
>>>>>
>>>>>
>>>>>
>>>>>  Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-890-8117 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>> For additional commands, e-mail: user-help@...
>>>>
>>>>
>>>
>>>
>>> --
>>>  Júlio Cesar Bueno Cotta
>>> Graduando em ciência da computação
>>>  Universidade Federal de Viçosa
>>>
>>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>
>
>
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

Re: AW: create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks man, but
Using your last tip ..also build the javadoc of the sourcepathref..and that
is a problem to me.
:(

2009/10/28 Scot P. Floess <sfloess@...>

>
> Oops - may need to adjust the sourcepathref ;)
>
>
> <path id="the-path">
>  <pathelement location = "${the-project}/src/main"/>
> </path>
>
> <javadoc access="public" author="on" sourcepathref="the-path"
>
> Sorry about that :)
>
>
> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>
>  Thanks again Scot, but still the same.
>> :(
>>
>> 2009/10/28 Scot P. Floess <sfloess@...>
>>
>>
>>> This may be your problem in your fileset...
>>>
>>> Change:
>>>
>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>
>>> To:
>>>
>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>
>>> I note you list /src vs src
>>>
>>> If that doesn't work, try:
>>>
>>> <path id="the-path">
>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>
>>>
>>>
>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>
>>>  Thanks all for the answers.
>>>
>>>> but I need more help
>>>> If I have just the .jar of the other project must to work in the same
>>>> way?
>>>> I had try using
>>>>          <path id="the-path">
>>>>          <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>          </path>
>>>>      <javadoc access="public" author="on" classpathref="the-path"
>>>>
>>>> But still is the same..
>>>> warning - Tag @see: reference not found:
>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>
>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>
>>>> Need I to charge the classes or something like this?
>>>>
>>>>
>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>
>>>>
>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>> response
>>>>> ;)
>>>>>
>>>>>
>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>
>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>
>>>>>   <javadoc ... classpath=""/>
>>>>>>
>>>>>> Because your source files depends on these libraries you should have
>>>>>> defined them somewhere before:
>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>  <javac .... classpathref="cp"/>
>>>>>> then reuse that
>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>
>>>>>>
>>>>>> Jan
>>>>>>
>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>
>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>> An: Ant Users List
>>>>>>> Betreff: Re: create javadoc
>>>>>>>
>>>>>>>
>>>>>>> You need to fix your classpath to include the other project's
>>>>>>> classes...
>>>>>>>
>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>
>>>>>>>  Hello,
>>>>>>>
>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>> from
>>>>>>>> another project in the workspace..
>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>
>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>
>>>>>>>>  not found:
>>>>>>>>
>>>>>>>
>>>>>>>  com.bla.bla.bla
>>>>>>>
>>>>>>>>
>>>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>>>> How can I correct the reference?
>>>>>>>> thanks.
>>>>>>>> --
>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>> Graduando em ciência da computação
>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>
>>>>>>>>
>>>>>>>>  Scot P. Floess
>>>>>>>>
>>>>>>> 27 Lake Royale
>>>>>>> Louisburg, NC  27549
>>>>>>>
>>>>>>> 252-478-8087 (Home)
>>>>>>> 919-890-8117 (Work)
>>>>>>>
>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>
>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>  ---------------------------------------------------------------------
>>>>>>>
>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>> For additional commands, e-mail: user-help@...
>>>>>>
>>>>>>
>>>>>>
>>>>>>  Scot P. Floess
>>>>>>
>>>>> 27 Lake Royale
>>>>> Louisburg, NC  27549
>>>>>
>>>>> 252-478-8087 (Home)
>>>>> 919-890-8117 (Work)
>>>>>
>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>
>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>> For additional commands, e-mail: user-help@...
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>>  Júlio Cesar Bueno Cotta
>>>> Graduando em ciência da computação
>>>>  Universidade Federal de Viçosa
>>>>
>>>>
>>>>  Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-890-8117 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@...
>>> For additional commands, e-mail: user-help@...
>>>
>>>
>>
>>
>> --
>>  Júlio Cesar Bueno Cotta
>> Graduando em ciência da computação
>>  Universidade Federal de Viçosa
>>
>>
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
>
> 252-478-8087 (Home)
> 919-890-8117 (Work)
>
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
> Architect Keros          http://sourceforge.net/projects/keros
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>



--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Well the error you are getting is because it cannot find the source file
in order to actually do the Java documentation.  Are you saying that you
do not want those file documented as well?  If so, how will Javadoc handle
links to classes that your classes use?

Or am I missing something?

On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:

> Thanks man, but
> Using your last tip ..also build the javadoc of the sourcepathref..and that
> is a problem to me.
> :(
>
> 2009/10/28 Scot P. Floess <sfloess@...>
>
>>
>> Oops - may need to adjust the sourcepathref ;)
>>
>>
>> <path id="the-path">
>>  <pathelement location = "${the-project}/src/main"/>
>> </path>
>>
>> <javadoc access="public" author="on" sourcepathref="the-path"
>>
>> Sorry about that :)
>>
>>
>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>
>>  Thanks again Scot, but still the same.
>>> :(
>>>
>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>
>>>
>>>> This may be your problem in your fileset...
>>>>
>>>> Change:
>>>>
>>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>
>>>> To:
>>>>
>>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>>
>>>> I note you list /src vs src
>>>>
>>>> If that doesn't work, try:
>>>>
>>>> <path id="the-path">
>>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>>
>>>>
>>>>
>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>
>>>>  Thanks all for the answers.
>>>>
>>>>> but I need more help
>>>>> If I have just the .jar of the other project must to work in the same
>>>>> way?
>>>>> I had try using
>>>>>          <path id="the-path">
>>>>>          <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>          </path>
>>>>>      <javadoc access="public" author="on" classpathref="the-path"
>>>>>
>>>>> But still is the same..
>>>>> warning - Tag @see: reference not found:
>>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>>
>>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>>
>>>>> Need I to charge the classes or something like this?
>>>>>
>>>>>
>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>
>>>>>
>>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>>> response
>>>>>> ;)
>>>>>>
>>>>>>
>>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>>
>>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>>
>>>>>>   <javadoc ... classpath=""/>
>>>>>>>
>>>>>>> Because your source files depends on these libraries you should have
>>>>>>> defined them somewhere before:
>>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>>  <javac .... classpathref="cp"/>
>>>>>>> then reuse that
>>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>>
>>>>>>>
>>>>>>> Jan
>>>>>>>
>>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>>
>>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>>> An: Ant Users List
>>>>>>>> Betreff: Re: create javadoc
>>>>>>>>
>>>>>>>>
>>>>>>>> You need to fix your classpath to include the other project's
>>>>>>>> classes...
>>>>>>>>
>>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>
>>>>>>>>  Hello,
>>>>>>>>
>>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>>> from
>>>>>>>>> another project in the workspace..
>>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>>
>>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>>
>>>>>>>>>  not found:
>>>>>>>>>
>>>>>>>>
>>>>>>>>  com.bla.bla.bla
>>>>>>>>
>>>>>>>>>
>>>>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>>>>> How can I correct the reference?
>>>>>>>>> thanks.
>>>>>>>>> --
>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  Scot P. Floess
>>>>>>>>>
>>>>>>>> 27 Lake Royale
>>>>>>>> Louisburg, NC  27549
>>>>>>>>
>>>>>>>> 252-478-8087 (Home)
>>>>>>>> 919-890-8117 (Work)
>>>>>>>>
>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>
>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>  ---------------------------------------------------------------------
>>>>>>>>
>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>  Scot P. Floess
>>>>>>>
>>>>>> 27 Lake Royale
>>>>>> Louisburg, NC  27549
>>>>>>
>>>>>> 252-478-8087 (Home)
>>>>>> 919-890-8117 (Work)
>>>>>>
>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>
>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>> For additional commands, e-mail: user-help@...
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>>  Júlio Cesar Bueno Cotta
>>>>> Graduando em ciência da computação
>>>>>  Universidade Federal de Viçosa
>>>>>
>>>>>
>>>>>  Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-890-8117 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>> For additional commands, e-mail: user-help@...
>>>>
>>>>
>>>
>>>
>>> --
>>>  Júlio Cesar Bueno Cotta
>>> Graduando em ciência da computação
>>>  Universidade Federal de Viçosa
>>>
>>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>
>
>
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

Re: AW: create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I got a way..that is not so good..but works..
I used the sourcepathref="the-path" and excludepackagenames="bla.*, bla1.*,
bla2.*" so the packages of the other project are in the path but the javadoc
of them is not generated. :D
That is not the best practice..but works. :D
Thanks for the help.

2009/10/28 Scot P. Floess <sfloess@...>

>
> Well the error you are getting is because it cannot find the source file in
> order to actually do the Java documentation.  Are you saying that you do not
> want those file documented as well?  If so, how will Javadoc handle links to
> classes that your classes use?
>
> Or am I missing something?
>
>
> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>
>  Thanks man, but
>> Using your last tip ..also build the javadoc of the sourcepathref..and
>> that
>> is a problem to me.
>> :(
>>
>> 2009/10/28 Scot P. Floess <sfloess@...>
>>
>>
>>> Oops - may need to adjust the sourcepathref ;)
>>>
>>>
>>> <path id="the-path">
>>>  <pathelement location = "${the-project}/src/main"/>
>>> </path>
>>>
>>> <javadoc access="public" author="on" sourcepathref="the-path"
>>>
>>> Sorry about that :)
>>>
>>>
>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>
>>>  Thanks again Scot, but still the same.
>>>
>>>> :(
>>>>
>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>
>>>>
>>>>  This may be your problem in your fileset...
>>>>>
>>>>> Change:
>>>>>
>>>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>
>>>>> To:
>>>>>
>>>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>>>
>>>>> I note you list /src vs src
>>>>>
>>>>> If that doesn't work, try:
>>>>>
>>>>> <path id="the-path">
>>>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>>>
>>>>>
>>>>>
>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>
>>>>>  Thanks all for the answers.
>>>>>
>>>>>  but I need more help
>>>>>> If I have just the .jar of the other project must to work in the same
>>>>>> way?
>>>>>> I had try using
>>>>>>         <path id="the-path">
>>>>>>         <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>         </path>
>>>>>>     <javadoc access="public" author="on" classpathref="the-path"
>>>>>>
>>>>>> But still is the same..
>>>>>> warning - Tag @see: reference not found:
>>>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>>>
>>>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>>>
>>>>>> Need I to charge the classes or something like this?
>>>>>>
>>>>>>
>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>
>>>>>>
>>>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>>>
>>>>>>> response
>>>>>>> ;)
>>>>>>>
>>>>>>>
>>>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>>>
>>>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>>>
>>>>>>>  <javadoc ... classpath=""/>
>>>>>>>
>>>>>>>>
>>>>>>>> Because your source files depends on these libraries you should have
>>>>>>>> defined them somewhere before:
>>>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>>>  <javac .... classpathref="cp"/>
>>>>>>>> then reuse that
>>>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>>>
>>>>>>>>
>>>>>>>> Jan
>>>>>>>>
>>>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>>>
>>>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>>>
>>>>>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>>>> An: Ant Users List
>>>>>>>>> Betreff: Re: create javadoc
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> You need to fix your classpath to include the other project's
>>>>>>>>> classes...
>>>>>>>>>
>>>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>>
>>>>>>>>>  Hello,
>>>>>>>>>
>>>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>>>
>>>>>>>>>> from
>>>>>>>>>> another project in the workspace..
>>>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>>>
>>>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>>>
>>>>>>>>>>  not found:
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>  com.bla.bla.bla
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>>>>>> How can I correct the reference?
>>>>>>>>>> thanks.
>>>>>>>>>> --
>>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>
>>>>>>>>>>  27 Lake Royale
>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>
>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>
>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>
>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  ---------------------------------------------------------------------
>>>>>>>>>
>>>>>>>>>  To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>  Scot P. Floess
>>>>>>>>
>>>>>>>>  27 Lake Royale
>>>>>>> Louisburg, NC  27549
>>>>>>>
>>>>>>> 252-478-8087 (Home)
>>>>>>> 919-890-8117 (Work)
>>>>>>>
>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>
>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> --
>>>>>>  Júlio Cesar Bueno Cotta
>>>>>> Graduando em ciência da computação
>>>>>>  Universidade Federal de Viçosa
>>>>>>
>>>>>>
>>>>>>  Scot P. Floess
>>>>>>
>>>>> 27 Lake Royale
>>>>> Louisburg, NC  27549
>>>>>
>>>>> 252-478-8087 (Home)
>>>>> 919-890-8117 (Work)
>>>>>
>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>
>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>> For additional commands, e-mail: user-help@...
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>>  Júlio Cesar Bueno Cotta
>>>> Graduando em ciência da computação
>>>>  Universidade Federal de Viçosa
>>>>
>>>>
>>>>  Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-890-8117 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@...
>>> For additional commands, e-mail: user-help@...
>>>
>>>
>>
>>
>> --
>>  Júlio Cesar Bueno Cotta
>> Graduando em ciência da computação
>>  Universidade Federal de Viçosa
>>
>>
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
>
> 252-478-8087 (Home)
> 919-890-8117 (Work)
>
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
> Architect Keros          http://sourceforge.net/projects/keros
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>



--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


So, then what happens?  Those files don't have Javadoc generated and no
error message?  But isn't that the same as it not finding those source
files?  Were you after the error not being emitted?

On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:

> I got a way..that is not so good..but works..
> I used the sourcepathref="the-path" and excludepackagenames="bla.*, bla1.*,
> bla2.*" so the packages of the other project are in the path but the javadoc
> of them is not generated. :D
> That is not the best practice..but works. :D
> Thanks for the help.
>
> 2009/10/28 Scot P. Floess <sfloess@...>
>
>>
>> Well the error you are getting is because it cannot find the source file in
>> order to actually do the Java documentation.  Are you saying that you do not
>> want those file documented as well?  If so, how will Javadoc handle links to
>> classes that your classes use?
>>
>> Or am I missing something?
>>
>>
>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>
>>  Thanks man, but
>>> Using your last tip ..also build the javadoc of the sourcepathref..and
>>> that
>>> is a problem to me.
>>> :(
>>>
>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>
>>>
>>>> Oops - may need to adjust the sourcepathref ;)
>>>>
>>>>
>>>> <path id="the-path">
>>>>  <pathelement location = "${the-project}/src/main"/>
>>>> </path>
>>>>
>>>> <javadoc access="public" author="on" sourcepathref="the-path"
>>>>
>>>> Sorry about that :)
>>>>
>>>>
>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>
>>>>  Thanks again Scot, but still the same.
>>>>
>>>>> :(
>>>>>
>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>
>>>>>
>>>>>  This may be your problem in your fileset...
>>>>>>
>>>>>> Change:
>>>>>>
>>>>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>
>>>>>> To:
>>>>>>
>>>>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>>>>
>>>>>> I note you list /src vs src
>>>>>>
>>>>>> If that doesn't work, try:
>>>>>>
>>>>>> <path id="the-path">
>>>>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>
>>>>>>  Thanks all for the answers.
>>>>>>
>>>>>>  but I need more help
>>>>>>> If I have just the .jar of the other project must to work in the same
>>>>>>> way?
>>>>>>> I had try using
>>>>>>>         <path id="the-path">
>>>>>>>         <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>>         </path>
>>>>>>>     <javadoc access="public" author="on" classpathref="the-path"
>>>>>>>
>>>>>>> But still is the same..
>>>>>>> warning - Tag @see: reference not found:
>>>>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>>>>
>>>>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>>>>
>>>>>>> Need I to charge the classes or something like this?
>>>>>>>
>>>>>>>
>>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>>
>>>>>>>
>>>>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>>>>
>>>>>>>> response
>>>>>>>> ;)
>>>>>>>>
>>>>>>>>
>>>>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>>>>
>>>>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>>>>
>>>>>>>>  <javadoc ... classpath=""/>
>>>>>>>>
>>>>>>>>>
>>>>>>>>> Because your source files depends on these libraries you should have
>>>>>>>>> defined them somewhere before:
>>>>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>>>>  <javac .... classpathref="cp"/>
>>>>>>>>> then reuse that
>>>>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Jan
>>>>>>>>>
>>>>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>>>>
>>>>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>>>>
>>>>>>>>>> Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>>>>> An: Ant Users List
>>>>>>>>>> Betreff: Re: create javadoc
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> You need to fix your classpath to include the other project's
>>>>>>>>>> classes...
>>>>>>>>>>
>>>>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>>>
>>>>>>>>>>  Hello,
>>>>>>>>>>
>>>>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>>>>
>>>>>>>>>>> from
>>>>>>>>>>> another project in the workspace..
>>>>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>>>>
>>>>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>>>>
>>>>>>>>>>>  not found:
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>  com.bla.bla.bla
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>> where com.bla.bla.bla is the referencied classes.
>>>>>>>>>>> How can I correct the reference?
>>>>>>>>>>> thanks.
>>>>>>>>>>> --
>>>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>>
>>>>>>>>>>>  27 Lake Royale
>>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>>
>>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>>
>>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>>
>>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  ---------------------------------------------------------------------
>>>>>>>>>>
>>>>>>>>>>  To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  Scot P. Floess
>>>>>>>>>
>>>>>>>>>  27 Lake Royale
>>>>>>>> Louisburg, NC  27549
>>>>>>>>
>>>>>>>> 252-478-8087 (Home)
>>>>>>>> 919-890-8117 (Work)
>>>>>>>>
>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>
>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>
>>>>>>>>
>>>>>>>> ---------------------------------------------------------------------
>>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>> --
>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>> Graduando em ciência da computação
>>>>>>>  Universidade Federal de Viçosa
>>>>>>>
>>>>>>>
>>>>>>>  Scot P. Floess
>>>>>>>
>>>>>> 27 Lake Royale
>>>>>> Louisburg, NC  27549
>>>>>>
>>>>>> 252-478-8087 (Home)
>>>>>> 919-890-8117 (Work)
>>>>>>
>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>
>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>> For additional commands, e-mail: user-help@...
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>>  Júlio Cesar Bueno Cotta
>>>>> Graduando em ciência da computação
>>>>>  Universidade Federal de Viçosa
>>>>>
>>>>>
>>>>>  Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-890-8117 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>> For additional commands, e-mail: user-help@...
>>>>
>>>>
>>>
>>>
>>> --
>>>  Júlio Cesar Bueno Cotta
>>> Graduando em ciência da computação
>>>  Universidade Federal de Viçosa
>>>
>>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>
>
>
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

Re: AW: create javadoc

by Júlio Cesar Bueno Cotta :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Sorry by the late anwser, I didn't see your reply.
I got create the javadoc as I wnated! :D
there are some warnings, but the javadoc it's almost the same of the javadoc
created by eclipse.

2009/10/29 Scot P. Floess <sfloess@...>

>
> So, then what happens?  Those files don't have Javadoc generated and no
> error message?  But isn't that the same as it not finding those source
> files?  Were you after the error not being emitted?
>
>
> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>
>  I got a way..that is not so good..but works..
>> I used the sourcepathref="the-path" and excludepackagenames="bla.*,
>> bla1.*,
>> bla2.*" so the packages of the other project are in the path but the
>> javadoc
>> of them is not generated. :D
>> That is not the best practice..but works. :D
>> Thanks for the help.
>>
>> 2009/10/28 Scot P. Floess <sfloess@...>
>>
>>
>>> Well the error you are getting is because it cannot find the source file
>>> in
>>> order to actually do the Java documentation.  Are you saying that you do
>>> not
>>> want those file documented as well?  If so, how will Javadoc handle links
>>> to
>>> classes that your classes use?
>>>
>>> Or am I missing something?
>>>
>>>
>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>
>>>  Thanks man, but
>>>
>>>> Using your last tip ..also build the javadoc of the sourcepathref..and
>>>> that
>>>> is a problem to me.
>>>> :(
>>>>
>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>
>>>>
>>>>  Oops - may need to adjust the sourcepathref ;)
>>>>>
>>>>>
>>>>> <path id="the-path">
>>>>>  <pathelement location = "${the-project}/src/main"/>
>>>>> </path>
>>>>>
>>>>> <javadoc access="public" author="on" sourcepathref="the-path"
>>>>>
>>>>> Sorry about that :)
>>>>>
>>>>>
>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>
>>>>>  Thanks again Scot, but still the same.
>>>>>
>>>>>  :(
>>>>>>
>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>
>>>>>>
>>>>>>  This may be your problem in your fileset...
>>>>>>
>>>>>>>
>>>>>>> Change:
>>>>>>>
>>>>>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>>
>>>>>>> To:
>>>>>>>
>>>>>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>>>>>
>>>>>>> I note you list /src vs src
>>>>>>>
>>>>>>> If that doesn't work, try:
>>>>>>>
>>>>>>> <path id="the-path">
>>>>>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>
>>>>>>>  Thanks all for the answers.
>>>>>>>
>>>>>>>  but I need more help
>>>>>>>
>>>>>>>> If I have just the .jar of the other project must to work in the
>>>>>>>> same
>>>>>>>> way?
>>>>>>>> I had try using
>>>>>>>>        <path id="the-path">
>>>>>>>>        <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>>>        </path>
>>>>>>>>    <javadoc access="public" author="on" classpathref="the-path"
>>>>>>>>
>>>>>>>> But still is the same..
>>>>>>>> warning - Tag @see: reference not found:
>>>>>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>>>>>
>>>>>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>>>>>
>>>>>>>> Need I to charge the classes or something like this?
>>>>>>>>
>>>>>>>>
>>>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>>>
>>>>>>>>
>>>>>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>>>>>
>>>>>>>>  response
>>>>>>>>> ;)
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>>>>>
>>>>>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>>>>>
>>>>>>>>>  <javadoc ... classpath=""/>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>> Because your source files depends on these libraries you should
>>>>>>>>>> have
>>>>>>>>>> defined them somewhere before:
>>>>>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>>>>>  <javac .... classpathref="cp"/>
>>>>>>>>>> then reuse that
>>>>>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Jan
>>>>>>>>>>
>>>>>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>>>>>
>>>>>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>>>>>
>>>>>>>>>>  Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>>>>>> An: Ant Users List
>>>>>>>>>>> Betreff: Re: create javadoc
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> You need to fix your classpath to include the other project's
>>>>>>>>>>> classes...
>>>>>>>>>>>
>>>>>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>>>>
>>>>>>>>>>>  Hello,
>>>>>>>>>>>
>>>>>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>>>>>
>>>>>>>>>>>  from
>>>>>>>>>>>> another project in the workspace..
>>>>>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>>>>>
>>>>>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>>>>>
>>>>>>>>>>>>  not found:
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>   com.bla.bla.bla
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>  where com.bla.bla.bla is the referencied classes.
>>>>>>>>>>>> How can I correct the reference?
>>>>>>>>>>>> thanks.
>>>>>>>>>>>> --
>>>>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>>>
>>>>>>>>>>>>  27 Lake Royale
>>>>>>>>>>>>
>>>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>>>
>>>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>>>
>>>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>>>
>>>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>  ---------------------------------------------------------------------
>>>>>>>>>>>
>>>>>>>>>>>  To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>>>>>
>>>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>
>>>>>>>>>>  27 Lake Royale
>>>>>>>>>>
>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>
>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>
>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>
>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ---------------------------------------------------------------------
>>>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  --
>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>> Graduando em ciência da computação
>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>
>>>>>>>>
>>>>>>>>  Scot P. Floess
>>>>>>>>
>>>>>>>>  27 Lake Royale
>>>>>>> Louisburg, NC  27549
>>>>>>>
>>>>>>> 252-478-8087 (Home)
>>>>>>> 919-890-8117 (Work)
>>>>>>>
>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>
>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> --
>>>>>>  Júlio Cesar Bueno Cotta
>>>>>> Graduando em ciência da computação
>>>>>>  Universidade Federal de Viçosa
>>>>>>
>>>>>>
>>>>>>  Scot P. Floess
>>>>>>
>>>>> 27 Lake Royale
>>>>> Louisburg, NC  27549
>>>>>
>>>>> 252-478-8087 (Home)
>>>>> 919-890-8117 (Work)
>>>>>
>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>
>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>> For additional commands, e-mail: user-help@...
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>>  Júlio Cesar Bueno Cotta
>>>> Graduando em ciência da computação
>>>>  Universidade Federal de Viçosa
>>>>
>>>>
>>>>  Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-890-8117 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@...
>>> For additional commands, e-mail: user-help@...
>>>
>>>
>>
>>
>> --
>>  Júlio Cesar Bueno Cotta
>> Graduando em ciência da computação
>>  Universidade Federal de Viçosa
>>
>>
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
>
> 252-478-8087 (Home)
> 919-890-8117 (Work)
>
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>
> Architect Keros          http://sourceforge.net/projects/keros
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@...
> For additional commands, e-mail: user-help@...
>



--
  Júlio Cesar Bueno Cotta
Graduando em ciência da computação
   Universidade Federal de Viçosa

Re: AW: create javadoc

by Scot P. Floess-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

  OK - great :)

On Mon, 9 Nov 2009, Júlio Cesar Bueno Cotta wrote:

> Sorry by the late anwser, I didn't see your reply.
> I got create the javadoc as I wnated! :D
> there are some warnings, but the javadoc it's almost the same of the javadoc
> created by eclipse.
>
> 2009/10/29 Scot P. Floess <sfloess@...>
>
>>
>> So, then what happens?  Those files don't have Javadoc generated and no
>> error message?  But isn't that the same as it not finding those source
>> files?  Were you after the error not being emitted?
>>
>>
>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>
>>  I got a way..that is not so good..but works..
>>> I used the sourcepathref="the-path" and excludepackagenames="bla.*,
>>> bla1.*,
>>> bla2.*" so the packages of the other project are in the path but the
>>> javadoc
>>> of them is not generated. :D
>>> That is not the best practice..but works. :D
>>> Thanks for the help.
>>>
>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>
>>>
>>>> Well the error you are getting is because it cannot find the source file
>>>> in
>>>> order to actually do the Java documentation.  Are you saying that you do
>>>> not
>>>> want those file documented as well?  If so, how will Javadoc handle links
>>>> to
>>>> classes that your classes use?
>>>>
>>>> Or am I missing something?
>>>>
>>>>
>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>
>>>>  Thanks man, but
>>>>
>>>>> Using your last tip ..also build the javadoc of the sourcepathref..and
>>>>> that
>>>>> is a problem to me.
>>>>> :(
>>>>>
>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>
>>>>>
>>>>>  Oops - may need to adjust the sourcepathref ;)
>>>>>>
>>>>>>
>>>>>> <path id="the-path">
>>>>>>  <pathelement location = "${the-project}/src/main"/>
>>>>>> </path>
>>>>>>
>>>>>> <javadoc access="public" author="on" sourcepathref="the-path"
>>>>>>
>>>>>> Sorry about that :)
>>>>>>
>>>>>>
>>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>
>>>>>>  Thanks again Scot, but still the same.
>>>>>>
>>>>>>  :(
>>>>>>>
>>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>>
>>>>>>>
>>>>>>>  This may be your problem in your fileset...
>>>>>>>
>>>>>>>>
>>>>>>>> Change:
>>>>>>>>
>>>>>>>>  <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>>>
>>>>>>>> To:
>>>>>>>>
>>>>>>>>  <fileset dir = "${the-project}" includes = "src/main/**/*"/>
>>>>>>>>
>>>>>>>> I note you list /src vs src
>>>>>>>>
>>>>>>>> If that doesn't work, try:
>>>>>>>>
>>>>>>>> <path id="the-path">
>>>>>>>>  <pathelement location = "${the-project}/src/main"/> </path>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On Wed, 28 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>
>>>>>>>>  Thanks all for the answers.
>>>>>>>>
>>>>>>>>  but I need more help
>>>>>>>>
>>>>>>>>> If I have just the .jar of the other project must to work in the
>>>>>>>>> same
>>>>>>>>> way?
>>>>>>>>> I had try using
>>>>>>>>>        <path id="the-path">
>>>>>>>>>        <fileset dir="${the-project}/" includes="/src/main/**/*"/>
>>>>>>>>>        </path>
>>>>>>>>>    <javadoc access="public" author="on" classpathref="the-path"
>>>>>>>>>
>>>>>>>>> But still is the same..
>>>>>>>>> warning - Tag @see: reference not found:
>>>>>>>>> bla.bla1.bla2.bla3#getXsltFile()
>>>>>>>>>
>>>>>>>>> the files are in The_Project/src/main/bla.bla1.bla2
>>>>>>>>>
>>>>>>>>> Need I to charge the classes or something like this?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> 2009/10/28 Scot P. Floess <sfloess@...>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  Hee - yep that is what I meant.  Sorry I was sorta rushed in my
>>>>>>>>>
>>>>>>>>>  response
>>>>>>>>>> ;)
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Wed, 28 Oct 2009, Jan.Materne@... wrote:
>>>>>>>>>>
>>>>>>>>>>  Ant with 'classpath' he meant the one for the <javadoc> task:
>>>>>>>>>>
>>>>>>>>>>  <javadoc ... classpath=""/>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>> Because your source files depends on these libraries you should
>>>>>>>>>>> have
>>>>>>>>>>> defined them somewhere before:
>>>>>>>>>>>  <path id="cp"><fileset .../></path>
>>>>>>>>>>>  <javac .... classpathref="cp"/>
>>>>>>>>>>> then reuse that
>>>>>>>>>>>  <javadoc ... classpathref="cp"/>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Jan
>>>>>>>>>>>
>>>>>>>>>>>  -----Ursprüngliche Nachricht-----
>>>>>>>>>>>
>>>>>>>>>>>  Von: Scot P. Floess [mailto:sfloess@...]
>>>>>>>>>>>
>>>>>>>>>>>  Gesendet: Dienstag, 27. Oktober 2009 21:29
>>>>>>>>>>>> An: Ant Users List
>>>>>>>>>>>> Betreff: Re: create javadoc
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> You need to fix your classpath to include the other project's
>>>>>>>>>>>> classes...
>>>>>>>>>>>>
>>>>>>>>>>>> On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>  Hello,
>>>>>>>>>>>>
>>>>>>>>>>>>  I am trying to create a build of a java project what use classes
>>>>>>>>>>>>
>>>>>>>>>>>>  from
>>>>>>>>>>>>> another project in the workspace..
>>>>>>>>>>>>> when I run the javadoc task..I see things like
>>>>>>>>>>>>>
>>>>>>>>>>>>> project/package/MyClass.java   warning - Tag @see: reference
>>>>>>>>>>>>>
>>>>>>>>>>>>>  not found:
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>   com.bla.bla.bla
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>  where com.bla.bla.bla is the referencied classes.
>>>>>>>>>>>>> How can I correct the reference?
>>>>>>>>>>>>> thanks.
>>>>>>>>>>>>> --
>>>>>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>>>>
>>>>>>>>>>>>>  27 Lake Royale
>>>>>>>>>>>>>
>>>>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>>>>
>>>>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>>>>
>>>>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>>>>
>>>>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>  ---------------------------------------------------------------------
>>>>>>>>>>>>
>>>>>>>>>>>>  To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>>>>>>
>>>>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>  Scot P. Floess
>>>>>>>>>>>
>>>>>>>>>>>  27 Lake Royale
>>>>>>>>>>>
>>>>>>>>>> Louisburg, NC  27549
>>>>>>>>>>
>>>>>>>>>> 252-478-8087 (Home)
>>>>>>>>>> 919-890-8117 (Work)
>>>>>>>>>>
>>>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>>>
>>>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ---------------------------------------------------------------------
>>>>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  --
>>>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>>>> Graduando em ciência da computação
>>>>>>>>>  Universidade Federal de Viçosa
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  Scot P. Floess
>>>>>>>>>
>>>>>>>>>  27 Lake Royale
>>>>>>>> Louisburg, NC  27549
>>>>>>>>
>>>>>>>> 252-478-8087 (Home)
>>>>>>>> 919-890-8117 (Work)
>>>>>>>>
>>>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>>>
>>>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>>>
>>>>>>>>
>>>>>>>> ---------------------------------------------------------------------
>>>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>>>> For additional commands, e-mail: user-help@...
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>> --
>>>>>>>  Júlio Cesar Bueno Cotta
>>>>>>> Graduando em ciência da computação
>>>>>>>  Universidade Federal de Viçosa
>>>>>>>
>>>>>>>
>>>>>>>  Scot P. Floess
>>>>>>>
>>>>>> 27 Lake Royale
>>>>>> Louisburg, NC  27549
>>>>>>
>>>>>> 252-478-8087 (Home)
>>>>>> 919-890-8117 (Work)
>>>>>>
>>>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>>>
>>>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>>>
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>>>> For additional commands, e-mail: user-help@...
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>>  Júlio Cesar Bueno Cotta
>>>>> Graduando em ciência da computação
>>>>>  Universidade Federal de Viçosa
>>>>>
>>>>>
>>>>>  Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-890-8117 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@...
>>>> For additional commands, e-mail: user-help@...
>>>>
>>>>
>>>
>>>
>>> --
>>>  Júlio Cesar Bueno Cotta
>>> Graduando em ciência da computação
>>>  Universidade Federal de Viçosa
>>>
>>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-890-8117 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@...
>> For additional commands, e-mail: user-help@...
>>
>
>
>
> --
>  Júlio Cesar Bueno Cotta
> Graduando em ciência da computação
>   Universidade Federal de Viçosa
>
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...