Bugs item #575001, was opened at 2002-06-28 11:26
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402704&aid=575001&group_id=31602

Category: xdoclet
Group: v1.2
>Status: Closed
>Resolution: Rejected
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: Konstantin Pribluda (ko5tik)
Summary: getValue method not supported

Initial Comment:
   /**
    * @ejb:interface-method view-type="remote"
    */
   public abstract void
setCustomerNormalValue(CustomerNormalValue value)
           throws ApplicationException;

   /**
    * @ejb:interface-method view-type="remote"
    */
   public abstract CustomerNormalValue
getCustomerNormalValue();

is supported, but

   /**
    * @ejb:interface-method view-type="remote"
    */
   public abstract void setValue(CustomerNormalValue value)
           throws ApplicationException;

   /**
    * @ejb:interface-method view-type="remote"
    */
   public abstract CustomerNormalValue getValue();

or is this mandatory to have the method name the same
as the object name?

----------------------------------------------------------------------

>Comment By: Konstantin Pribluda (ko5tik)
Date: 2002-10-04 16:49

Message:
Logged In: YES 
user_id=91100

XdOclet genertates getter/setter methods for value object
with value object name. 

Using getValue/setValue would disallow idea of having
multiple value objects per bean due to compile time 
ambiguity. 

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402704&aid=575001&group_id=31602


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to