I have the following at the class level in my BMP entity bean.
* * @ejb.pk * class="com.quest.acaiis.ejb.entity.build.BuildPK" *
... and the following in my build.xml ...
<entitypk/>
My problem is I'm receiving the following error when building it ...
[javac] /home/projects/acaiis/src/com/quest/acaiis/ejb/dao/PostgresqlBuildDAO.java:253: cannot resolve symbol
[javac] symbol : constructor BuildPK (int)
[javac] location: class com.quest.acaiis.ejb.entity.build.BuildPK
[javac] return new BuildPK(bid);
[javac] ^
The constructors in the BuildPK generated file does not take an int as an arg, which is what I need (What gets generated is just an empty constructor). How do I add a contstructor so that the generated BuildPK file has the constructor which I call from my DAO file? I can't add it to that file as it will get wiped out the next time a new file is generated.
Any help much appreciated.
------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _______________________________________________ xdoclet-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
