/** {@inheritDoc} */ public T registerProperty(String theSetter, String theGetter) { cp5.getProperties().register(this, theSetter, theGetter); return me; }
/** {@inheritDoc} */ public T registerProperty(String thePropertyName) { cp5.getProperties().register(this, thePropertyName); return me; }
/** {@inheritDoc} */ public ControllerProperty getProperty(String thePropertyName) { return cp5.getProperties().getProperty(this, thePropertyName); }
/** {@inheritDoc} */ public ControllerProperty getProperty(String theSetter, String theGetter) { return cp5.getProperties().getProperty(this, theSetter, theGetter); }
/** {@inheritDoc} */ public T removeProperty(String thePropertyName) { cp5.getProperties().remove(this, thePropertyName); return me; }