Using xdoc 1.2b3
I am trying to set a jboss.xml template file, but get errors.
Here is the jboss subtask
<jboss
version="3.0"
unauthenticatedPrincipal="nobody"
xmlencoding="UTF-8"
destdir="${output.metainf.dir}"
validatexml="true"
jbossTemplateFile=".\\templatejboss.xml"
/>
here is the error:
$ ant ejbdoclet
Buildfile: build.xml
init:
prepare:
ejbdoclet:
BUILD FAILED
file:c:/dev/ejbxdoclet/build.xml:108: Class
xdoclet.modules.jboss.ejb.JBossSubTask doesn't support the
"jbosstemplatefile" attribute.
Any ideas?
Thanks,
Craig
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, February 24, 2003 1:01 PM
To: [EMAIL PROTECTED]
Subject: xdoclet-user digest, Vol 1 #932 - 4 msgs
Send xdoclet-user mailing list submissions to
[EMAIL PROTECTED]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/xdoclet-user
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of xdoclet-user digest..."
Today's Topics:
1. XDoclet & value-object inheritance (Error none)
2. XDoclet & value-object inheritance (Error none)
3. Suppress Create Method in SessionBeans (Ferrari Massimo)
4. duplicate class problem : please help (Modha Kumar)
--__--__--
Message: 1
Date: Mon, 24 Feb 2003 00:21:56 -0800 (PST)
From: Error none <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [Xdoclet-user] XDoclet & value-object inheritance
Reply-To: [EMAIL PROTECTED]
I created a entity bean and added tags to create
value-objects. This are my tags:
* @ejb.value-object
* name="Material"
* match="material"
* @ejb.value-object
* name="Book"
* match="book"
* extends="MaterialVO"
* @ejb.value-object
* name="Mobile"
* match="mobile"
* extends="MaterialVO"
(I added also some light tags but I didn't put them
here)
EDoclet creates nicely all the VO files and puts the
"extends MaterialVO" in book and mobile. But, he also
add's this method in BookVO and MobileVO:
protected boolean hasIdentity() {return idHasBeenSet;}
The first porblem with this method is that
'idHasBeenSet' is a private variable in MaterialVO
(super) class. So sub classes can't return this field
. The second problem is (imho) that this method (wich
is auto generated by xdoclet) does not even belong in
the subclass and only in the super class.
Can anyone tell me what am I doing wrong here ? Are
there special tags to tell xdoclet not to do this ?
...
thanks
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
--__--__--
Message: 2
Date: Mon, 24 Feb 2003 00:22:14 -0800 (PST)
From: Error none <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [Xdoclet-user] XDoclet & value-object inheritance
Reply-To: [EMAIL PROTECTED]
I created a entity bean and added tags to create
value-objects. This are my tags:
* @ejb.value-object
* name="Material"
* match="material"
* @ejb.value-object
* name="Book"
* match="book"
* extends="MaterialVO"
* @ejb.value-object
* name="Mobile"
* match="mobile"
* extends="MaterialVO"
(I added also some light tags but I didn't put them
here)
EDoclet creates nicely all the VO files and puts the
"extends MaterialVO" in book and mobile. But, he also
add's this method in BookVO and MobileVO:
protected boolean hasIdentity() {return idHasBeenSet;}
The first porblem with this method is that
'idHasBeenSet' is a private variable in MaterialVO
(super) class. So sub classes can't return this field
. The second problem is (imho) that this method (wich
is auto generated by xdoclet) does not even belong in
the subclass and only in the super class.
Can anyone tell me what am I doing wrong here ? Are
there special tags to tell xdoclet not to do this ?
...
thanks
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
--__--__--
Message: 3
Date: Mon, 24 Feb 2003 18:20:58 +0100
From: "Ferrari Massimo" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: [Xdoclet-user] Suppress Create Method in SessionBeans
Reply-To: [EMAIL PROTECTED]
Hi,
how to suppress the generation of the create() method?
I have a hierarchy like this:
AbstractSessionBean <- SessionBeanImpl
Xdoclet 1.2b2 automatically generates a create() method in =
AbstractSessionBeanHome, and it conflicts with the create() method that =
I want to be generated in SessionImplHome
Thank you!
Massimo
--__--__--
Message: 4
Date: Mon, 24 Feb 2003 10:40:14 -0800
From: "Modha Kumar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: [Xdoclet-user] duplicate class problem : please help
Reply-To: [EMAIL PROTECTED]
Hi All
I am stuck in this strange problem
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
package com.xxx.cure.server;
import javax.ejb.*;
import java.rmi.RemoteException;
import javax.naming.*;
import com.xxx.cure.exceptions.*;
import com.xxx.cure.commandbeans.*;
/**
* CommandServerBean is a CommandServer which accepts Command Beans from =
the Client
* call their execute method and returns back the result.
*
* @ejb:bean
* type=3D"Stateless"
* name=3D"server/CommandServer"
* local-jndi-name=3D"CommandServerLocalHome"
* view-type=3D"both"
*
*/
public class CommandServerBean implements SessionBean {
SessionContext ctx;=09
public void CommandServer() {
}
/**
* The method that executes command bean.
*
* @param Command inCommingCommand
*
* @throws CommandException
* @ejb:interface-method view-type=3D"remote"
*/
public Command executeCommand(Command aCommand) throws CommandException
{
try
{
aCommand.execute();
}
catch (CommandException e)
{
ctx.setRollbackOnly();
throw e;
}
return aCommand;
}
public void ejbActivate() throws EJBException,
java.rmi.RemoteException
{
}
public void ejbCreate() throws CreateException {
}
public void ejbPassivate() throws EJBException,
java.rmi.RemoteException
{
}
public void ejbRemove() throws EJBException,
java.rmi.RemoteException=20
{
}
public void setSessionContext(final SessionContext p1)
throws EJBException, java.rmi.RemoteException {
this.ctx =3D p1;
}
}
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
classes generated:
CommandServer.java CommandServerHome.java CommandServerLocal.java =
CommandServerLocalHome.java
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
Errors
compile:
[javac] Compiling 25 source files to C:\fnol\build\classes
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServer.java:9: du
plicate class: com.xxx.cure.server.CommandServer
[javac] public interface CommandServer
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:9
: duplicate class: com.xxx.cure.server.CommandServerHome
[javac] public interface CommandServerHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocal.java:
9: duplicate class: com.xxx.cure.server.CommandServerLocal
[javac] public interface CommandServerLocal
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:9: duplicate class: com.xxx.cure.server.CommandServerLocalHome
[javac] public interface CommandServerLocalHome
[javac] ^
[javac] C:\fnol\build\generate\com\xxx\cure\server\Policy.java:9: =
duplicate
class: com.xxx.cure.server.Policy
[javac] public interface Policy
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:9: dupli
cate class: com.xxx.cure.server.PolicyHome
[javac] public interface PolicyHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocal.java:9: dupl
icate class: com.xxx.cure.server.PolicyLocal
[javac] public interface PolicyLocal
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:9:
duplicate class: com.xxx.cure.server.PolicyLocalHome
[javac] public interface PolicyLocalHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:1
2: modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Co
mmandServer";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:1
3: modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"server/CommandServer";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:12: modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Co
mmandServerLocal";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:13: modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"CommandServerLocalHome";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:12: modi
fier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Po
licy";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:13: modi
fier public static not allowed here
[javac] public static final String JNDI_NAME=3D"server/Policy";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:12:
modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Po
licyLocal";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:13:
modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"PolicyBeanLocalHome";
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:16: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] private CommandServerHome serverHome;
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:24: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] this.serverHome =3D (CommandServerHome) =
PortableRemote
Object.narrow(obj, CommandServerHome.class );
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:24: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] this.serverHome =3D (CommandServerHome) =
PortableRemote
Object.narrow(obj, CommandServerHome.class );
[javac]
^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:36: =
cannot
resolve symbol
[javac] symbol : class CommandServer
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] CommandServer aCommandServer =3D =
serverHome.create();
[javac] ^
[javac] 20 errors
BUILD FAILED
file:C:/fnol/antbuild/build.xml:153: Compile failed; see the compiler =
error outp
ut for details.
Total time: 7 seconds
C:\fnol\antbuild>
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Hi All
I am stuck in this strange problem
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
package com.xxx.cure.server;
import javax.ejb.*;
import java.rmi.RemoteException;
import javax.naming.*;
import com.xxx.cure.exceptions.*;
import com.xxx.cure.commandbeans.*;
/**
* CommandServerBean is a CommandServer which accepts Command Beans from =
the Client
* call their execute method and returns back the result.
*
* @ejb:bean
* type=3D"Stateless"
* name=3D"server/CommandServer"
* local-jndi-name=3D"CommandServerLocalHome"
* view-type=3D"both"
*
*/
public class CommandServerBean implements SessionBean {
SessionContext ctx;=09
public void CommandServer() {
}
/**
* The method that executes command bean.
*
* @param Command inCommingCommand
*
* @throws CommandException
* @ejb:interface-method view-type=3D"remote"
*/
public Command executeCommand(Command aCommand) throws CommandException
{
try
{
aCommand.execute();
}
catch (CommandException e)
{
ctx.setRollbackOnly();
throw e;
}
return aCommand;
}
public void ejbActivate() throws EJBException,
java.rmi.RemoteException
{
}
public void ejbCreate() throws CreateException {
}
public void ejbPassivate() throws EJBException,
java.rmi.RemoteException
{
}
public void ejbRemove() throws EJBException,
java.rmi.RemoteException=20
{
}
public void setSessionContext(final SessionContext p1)
throws EJBException, java.rmi.RemoteException {
this.ctx =3D p1;
}
}
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
classes generated:
CommandServer.java CommandServerHome.java CommandServerLocal.java =
CommandServerLocalHome.java
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
Errors
compile:
[javac] Compiling 25 source files to C:\fnol\build\classes
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServer.java:9: du
plicate class: com.xxx.cure.server.CommandServer
[javac] public interface CommandServer
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:9
: duplicate class: com.xxx.cure.server.CommandServerHome
[javac] public interface CommandServerHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocal.java:
9: duplicate class: com.xxx.cure.server.CommandServerLocal
[javac] public interface CommandServerLocal
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:9: duplicate class: com.xxx.cure.server.CommandServerLocalHome
[javac] public interface CommandServerLocalHome
[javac] ^
[javac] C:\fnol\build\generate\com\xxx\cure\server\Policy.java:9: =
duplicate
class: com.xxx.cure.server.Policy
[javac] public interface Policy
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:9: dupli
cate class: com.xxx.cure.server.PolicyHome
[javac] public interface PolicyHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocal.java:9: dupl
icate class: com.xxx.cure.server.PolicyLocal
[javac] public interface PolicyLocal
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:9:
duplicate class: com.xxx.cure.server.PolicyLocalHome
[javac] public interface PolicyLocalHome
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:1
2: modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Co
mmandServer";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerHome.java:1
3: modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"server/CommandServer";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:12: modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Co
mmandServerLocal";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\CommandServerLocalHome.j
ava:13: modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"CommandServerLocalHome";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:12: modi
fier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Po
licy";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyHome.java:13: modi
fier public static not allowed here
[javac] public static final String JNDI_NAME=3D"server/Policy";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:12:
modifier public static not allowed here
[javac] public static final String =
COMP_NAME=3D"java:comp/env/ejb/server/Po
licyLocal";
[javac] ^
[javac] =
C:\fnol\build\generate\com\xxx\cure\server\PolicyLocalHome.java:13:
modifier public static not allowed here
[javac] public static final String =
JNDI_NAME=3D"PolicyBeanLocalHome";
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:16: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] private CommandServerHome serverHome;
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:24: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] this.serverHome =3D (CommandServerHome) =
PortableRemote
Object.narrow(obj, CommandServerHome.class );
[javac] ^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:24: =
cannot
resolve symbol
[javac] symbol : class CommandServerHome
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] this.serverHome =3D (CommandServerHome) =
PortableRemote
Object.narrow(obj, CommandServerHome.class );
[javac]
^
[javac] C:\fnol\com\xxx\cure\commandrouter\EJBCommandTarget.java:36: =
cannot
resolve symbol
[javac] symbol : class CommandServer
[javac] location: class com.xxx.cure.commandrouter.EJBCommandTarget
[javac] CommandServer aCommandServer =3D =
serverHome.create();
[javac] ^
[javac] 20 errors
BUILD FAILED
file:C:/fnol/antbuild/build.xml:153: Compile failed; see the compiler =
error outp
ut for details.
Total time: 7 secon
C:\fnol\antbuild>
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
build file
<target name=3D"xdoclet-generate" depends=3D"init">=20
<mkdir dir=3D"${build.generate.dir}" />=20
<ejbdoclet=20
destdir=3D"${build.generate.dir}"=20
excludedtags=3D"@version,@author"=20
ejbspec=3D"${ejb.version}"=20
mergedir=3D"${src.resources.dir}/xdoclet"=20
force=3D"${xdoclet.force}"=20
>=20
<fileset dir=3D"${src.main.dir}">=20
<include name=3D"**/*Bean.java"/>=20
</fileset>
<remoteinterface/>=20
<localinterface/>=20
<homeinterface/>=20
<localhomeinterface/>=20
<entitypk/>=20
<entitycmp/>=20
<deploymentdescriptor destdir=3D"${build.meta-inf.dir}"/>=20
</ejbdoclet>=20
</target>=20
<target name=3D"compile" depends=3D"xdoclet-generate">=20
<mkdir dir=3D"${build.classes.dir}"/>=20
<javac srcdir=3D"${src.dir}"=20
destdir=3D"${build.classes.dir}"=20
debug=3D"on"=20
deprecation=3D"on"=20
classpathref=3D"build.path"=20
optimize=3D"off"=20
includes=3D"**/*.java">=20
<src path=3D"${src.dir}"/>=20
<src path=3D"${build.generate.dir}"/>=20
</javac>=20
</target>=20
--__--__--
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user
End of xdoclet-user Digest
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user