> /** > * Returns all the business functional areas. > * @ejb:interface-method > * @ejb:finder signature="java.util.Collection findAll()" > * query="SELECT OBJECT(u) FROM businessfunctionalarea u" > * result-type-mapping="local" > * @return Collection of BusFuncAreaData > */ > public abstract Collection findAll() throws FinderException;
@ejb:finder is a class level @tag, not method level, and you don't need to define an abstract findAll method. Just move ejb:finder to your class's javadoc. See the example. Ara. _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink _______________________________________________ Xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
