Super!
// TODO: needed for JSF
Object oldValue = readProperty(propName);
if (oldValue == value)
{
// NOOP
return;
}
if (null != oldValue)
{
if (oldValue.equals(value))
{
// NOOP
// IMPLEMENT: not sure if this is safe!
What does this comment mean? -- Øyvind Harboe http://www.zylin.com
