RE: Separate Java Bean Class for Getter/Setter method.

2011-05-31 Thread arin_12
sbVal.append(paramVal[i]); } return sbVal.toString(); } -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4442897.html Sent from the Struts - User mailing l

RE: Separate Java Bean Class for Getter/Setter method.

2011-05-19 Thread Chris Pratt
t; class. > > Any better solution ? > > -- > View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4408881.html > Sent from the Struts - User mailing list archive at Nabble.com. > > ---

RE: Separate Java Bean Class for Getter/Setter method.

2011-05-19 Thread arin_12
s gives me the exact value. This extra code I am writing in every action class. Any better solution ? -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4408881.html Sent from the Struts - User mailing list archive at

RE: Separate Java Bean Class for Getter/Setter method.

2011-05-18 Thread Biesbrock, Kevin
org > Subject: Re: Separate Java Bean Class for Getter/Setter method. > > Now the URL looks like, No extra amp; > http://localhost:8080/Samvidh_CIS/doEditAllergy.action?alId=2&; > alDescription=algy_full_desc&alName=algy_short_desc > > Now the New problem is that, I am not abl

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-18 Thread arin_12
e = [Ljava.lang.String;@b4b0a4 Key = alName, Value = [Ljava.lang.String;@5bcd91 Help Please... -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4407093.html Sent from the Struts - User

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-17 Thread arin_12
http://localhost:8080/Samvidh_CIS/doEditAllergy.action?alId=2&alDescription=algy_full_desc&alName=algy_short_desc This the URL that is generating. It is al not all. -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Sette

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-12 Thread Dave Newton
On Thu, May 12, 2011 at 11:59 AM, arin_12 wrote: > I am passing three parameters via URL from one page to another. > I only see one available on the second page; don't know why. > > Page one > > > >     >     > > > Page two > > value="%{#parameters.alDescription}"/> > > > > Any feed bac

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-12 Thread arin_12
this Allergy ? Any feed back ? -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4390648.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-11 Thread arin_12
value in action controller so that I can query the DB to read the necessary data. -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4387786.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Separate Java Bean Class for Getter/Setter method.

2011-05-11 Thread foramp
ont want to use viewname.elementname style. This create a issue in the > javascript validation. As JS is not able to recognize the "." dot. > > > > > Thanks, > -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Sette

Separate Java Bean Class for Getter/Setter method.

2011-05-10 Thread arin_12
not able to recognize the "." dot. Thanks, -- View this message in context: http://struts.1045723.n5.nabble.com/Separate-Java-Bean-Class-for-Getter-Setter-method-tp4385274p4385274.html Sent from the Struts - User mailing list archive at

Re: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Federica Oltolina
< federica.oltol...@ubiquity.it> wrote: Hi all, my head office yesterday asked me if it's possible to declare in some special file a mapping between actions and their methods because he'd like to use custom getter/setter methods containing some little formatting operations. For

Re: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Dave Newton
Martin Gainty wrote: if you mean spring specify struts.objectFactory.spring.autowire in /resources/struts-plugin.xml e.g. struts.objectFactory.spring.autoWire = type Whoops-I think you replied to the wrong message! This thread was about accessing getter methods of the action. Dave ---

RE: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Martin Gainty
; On Fri, Apr 17, 2009 at 9:31 AM, Federica Oltolina < > federica.oltol...@ubiquity.it> wrote: > > > Hi all, > > my head office yesterday asked me if it's possible to declare > > in some special file a mapping between actions and their methods > > because he'

Re: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Dave Newton
Federica Oltolina wrote: my head office yesterday asked me if it's possible to declare in some special file a mapping between actions and their methods because he'd like to use custom getter/setter methods containing some little formatting operations. For example, for the action

Re: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Jim Kiley
head office yesterday asked me if it's possible to declare > in some special file a mapping between actions and their methods > because he'd like to use custom getter/setter methods containing some > little formatting operations. > > For example, for the action attribute: >

Re: Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Pierre Lavignotte
@ubiquity.it> wrote: > Hi all, > my head office yesterday asked me if it's possible to declare > in some special file a mapping between actions and their methods > because he'd like to use custom getter/setter methods containing some > little formatting operations. &

Is there a way to make Struts2 working with other methods different than classic getter/setter?

2009-04-17 Thread Federica Oltolina
Hi all, my head office yesterday asked me if it's possible to declare in some special file a mapping between actions and their methods because he'd like to use custom getter/setter methods containing some little formatting operations. For example, for the action attribute: / priv

Re: Getter/Setter

2005-07-07 Thread Michael Taylor
If you mean writing a single method that handles multiple elements, then the way to handle this is with DynaBeans. Struts uses BeanUtils to populate the forms, and the DynaBean interface provides support for a set of generic set/get methods that can handle normal, indexed, and mapped propertie

RE: Getter/Setter

2005-07-07 Thread Jesse Alexander (KBSA 21)
Open the source in Eclipse; right-click on a variable; -source- -generate getter/setter-; choose the attributes you want, set the options and submit... hth Alexander -Original Message- From: Vijay K Anand [mailto:[EMAIL PROTECTED] Sent: Thursday, July 07, 2005 3:23 PM To: Struts Users

Getter/Setter

2005-07-07 Thread Vijay K Anand
hi All Any idea how to write setter / getter methods for multiple form elements ? Regards Vijay - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Getter / Setter Problem

2005-03-26 Thread Wendy Smoak
From: "Minn M Soe" <[EMAIL PROTECTED]> In JSP, Using gives out "No getter method" error for my pAnswer field, while other fields like "username" are having no problem. But when I changed it to , tomcat no longer gives me any errors. But I guess pAnswer is the right way to describe my field. What w

Getter / Setter Problem

2005-03-26 Thread Minn M Soe
Hello All, I have a form bean with pAnswer as string with getter getPAnswer() and setter setPAnswer(). I used JBuilder's Bean Designer. I also set appropriate entries to struts-config.xml's action-mapping. In JSP, Using gives out "No getter method" error for my pAnswer field, while other fields

Re: final getter/setter methods in actionform and valueobject classes

2004-07-15 Thread Bill Siggelkow
See section of 8.4.3.3 of the Java Language Specification at http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html. There is nothing wrong with declaring them as final; it means that the methods cannot be overriden by subclasses. Viral_Thakkar wrote: Hi All, I was wondering if

final getter/setter methods in actionform and valueobject classes

2004-07-14 Thread Viral_Thakkar
Hi All, I was wondering if all the getXXX methods in the Value Objects could be declared as final. Regards, Viral - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]