Hello,

I am using xdoclet and I want to change the output class names of the
interfaces.
I read there are the attributes remote-pattern, local-pattern but it doesn't
work. 
See my code example of my bean InterestBean:

/**
 * @ejb.bean
 *              name="Interest"
 *            display-name="Test a BrowserPrinter"
 *              type="Stateless"
 *              jndi-name="${jndi-name}"
 *              local-jndi-name="${jndi-name}"
 * 
 * 
 * @ejb:interface
 *        generate="local,remote"
 *      remote-pattern="Remote"
 *      local-pattern="Local"
 * 
 * @ejb:home
 *        generate="local,remote"
 *      remote-pattern="RemoteHome"
 *      local-pattern="LocalHome"
 */

This code example generates me following files:
        RemoteHome.java
        LocalHome.java
        Remote.java
        Local.java

But I wnat following:
        InterestRemoteHome.java
        InterestLocalHome.java
        InterestRemote.java
        InterestLocal.java      


Could somebody helpme please?
How can I use the pattern attributes?

Thanx

Perica Markovic








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