*/
public void setValue(Object value) {
if (m_property == null) {
throw new UnsupportedOperationException("Cannot set the value of a non 'living' property");
} else {
ConfigurationHandler handler = (ConfigurationHandler) m_property.getHandler();
handler.reconfigureProperty(m_property, value);
}
}