--- Torgeir Veimo <[EMAIL PROTECTED]> wrote:
> We had these @ejb tags which generated fine under
> xdoclet 1.1.2;
> 
> @ejb:pk
>
class="com.somewhere.ejbcontainer.domain.IntegerIntegerPK"
> generate="false"
> 
> @ejb:finder
>
signature="com.somewhere.ejbcontainer.domain.LEtoRoleMapRemote
> findByPrimaryKey(IntegerIntegerPK key)"
> 
> However, under xdoclet 1.2beta2 I need to use a full
> qualified classname
> parameter for the IntegerIntegerPK param in the
> finder method, otherwise
> I get two finder methods generated in the Home
> class;
> 
> @ejb:finder
>
signature="com.somewhere.ejbcontainer.domain.LEtoRoleMapRemote
>
findByPrimaryKey(com.somewhere.ejbcontainer.domain.IntegerIntegerPK
> key)"
> 
> 
> Is this correct by design in v1.2?

IIRC, you do not have to specify findByPrimaryKey,
xdoclet would generate this automatically.
( it's required by EJB spec )


And now you have to use fully qualified names
because xjavadoc ( which replaced the javadoc )
for classes not on xdoclet source path ( and
especially those you are generating ) or it would
qualify them in the same package as your beans.

regards,

=====
Konstantin Priblouda ( ko5tik )    Freelance Software developer
< http://www.pribluda.de > < play java games -> http://www.yook.de >
< render charts online -> http://www.pribluda.de/povray/ >

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com


-------------------------------------------------------
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

Reply via email to