Re: [OT]java bean question

2005-07-02 Thread Dave Newton
Leon Rosenberg wrote: You must be scott ambler fan :-) Or maybe not, he suggests words like a, an, some public void setValue(int aValue){ value = aValue; } I ended up doing the public class Foo { private int _bar; public void setBar(final int bar_) { _bar = bar_; } }

Re: [OT]java bean question

2005-07-01 Thread Frank W. Zammetti
Ursprüngliche Nachricht- >> Von: Frank W. Zammetti [mailto:[EMAIL PROTECTED] >> Gesendet: Freitag, 1. Juli 2005 21:19 >> An: Struts Users Mailing List >> Cc: Struts Users Mailing List >> Betreff: Re: [OT]java bean question >> >> Since this thread was

Re: [OT]java bean question

2005-07-01 Thread Leon Rosenberg
it's often generated by ides, even eclipse did it in one of the versions. > -Ursprüngliche Nachricht- > Von: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 1. Juli 2005 21:19 > An: Struts Users Mailing List > Cc: Struts Users Mailing List > Betreff

Re: [OT]java bean question

2005-07-01 Thread Leon Rosenberg
it's often generated by ides, even eclipse did it in one of the versions. > -Ursprüngliche Nachricht- > Von: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 1. Juli 2005 21:19 > An: Struts Users Mailing List > Cc: Struts Users Mailing List > Betreff

Re: [OT]java bean question

2005-07-01 Thread Wendy Smoak
From: "Ashish Kulkarni" <[EMAIL PROTECTED]> > I have java bean where in there is one property as > below > private java.lang.String P813NAME ; > public void setP813NAME (java.lang.String P813NAME ) > { this.P813NAME = P813NAME; } > public java.lang.String getP813NAME () > { return this.P813NAME ;

Re: [OT]java bean question

2005-07-01 Thread Frank W. Zammetti
user@struts.apache.org > 07/01/2005 02:54 cc > PM > Subject >[OT]java bean question > Please res

Re: [OT]java bean question

2005-07-01 Thread BHansard
sers Mailing List" To user@struts.apache.org cc Subject [OT]java bean question Hello I have java bean where in there is one property as below private java.lang.String P813NAME ; public void setP813NAME (java.lang.String P813NAME ) { this.P813NAME = P813NAME; } public java.l

[OT]java bean question

2005-07-01 Thread Ashish Kulkarni
Hello I have java bean where in there is one property as below private java.lang.String P813NAME ; public void setP813NAME (java.lang.String P813NAME ) { this.P813NAME = P813NAME; } public java.lang.String getP813NAME () { return this.P813NAME ; } is this valid or not? if not why not and where i c