Re: [JBoss-user] isModified Method

2001-07-15 Thread Syed
Thanks guys for your replies. I actually browsed through the source code and found the isModified function name hard-coded. So I just wanted to know whether is there any plan to make it settable just like in weblogic server. I will try to stick to the name "isModified". I'm very happy to see t

Re: [JBoss-user] isModified Method

2001-07-14 Thread Jason Dillon
The method name 'getIsModified' is redundant, at least in JavaBean terms, where the prefix 'is' refers the the getter/accessor of a boolean property. Why not just use isModified()? The above would result in a property named 'isModified', not 'modified', which basically means the same thing, one i

Re: [JBoss-user] isModified Method

2001-07-13 Thread Alex . Devine
| | To: [EMAIL PROTECTED] | | cc: | | Subject: [

Re: [JBoss-user] isModified Method

2001-07-13 Thread Hermann RANGAMANA
If you don't really want to change your method name ... why not to wrapp it in a isModified method () ? --hermann - Original Message - From: "Lennart Petersson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 13, 2001 12:19 PM Subject: SV: [JB

SV: [JBoss-user] isModified Method

2001-07-13 Thread Lennart Petersson
le in jboss :-( /Lennart - Original Message - From: Syed <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 13, 2001 12:00 PM Subject: [JBoss-user] isModified Method > Is there anyway to configure the name of the method "isModified". > >

Re: [JBoss-user] isModified Method

2001-07-13 Thread Burkhard Vogel
well not really, just add a method leave both in... Burkhard - Original Message - From: "Syed" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 13, 2001 12:00 PM Subject: [JBoss-user] isModified Method > Is there anyway to configure the name

[JBoss-user] isModified Method

2001-07-13 Thread Syed
Is there anyway to configure the name of the method "isModified". Currently we are using weblogic and weblogic has a tag to indicate the name of this method. So our method name is "getIsModified" and if we want to use our ejbs in JBoss, we would have to modify our source code to change the method