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
This is not configurable in JBoss. Here is the relevant code that gets the
isModified method:
isModified = container.getBeanClass().getMethod("isModified", new
Class[0]);
if (!isModified.getReturnType().equals(Boolean.TYPE))
isModified = null; // Has to have "boolean" as return type!
The onl
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: [JBoss-user] isModified Method
>
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 of the method "isModified".
>
>