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
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
|
| To: [EMAIL PROTECTED]
|
| cc:
|
| Subject: [
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
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".
>
>
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
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