Ejemplo n.º 1
0
 /** {@inheritDoc} */
 public T registerProperty(String theSetter, String theGetter) {
   cp5.getProperties().register(this, theSetter, theGetter);
   return me;
 }
Ejemplo n.º 2
0
 /** {@inheritDoc} */
 public T registerProperty(String thePropertyName) {
   cp5.getProperties().register(this, thePropertyName);
   return me;
 }
Ejemplo n.º 3
0
 /** {@inheritDoc} */
 public ControllerProperty getProperty(String thePropertyName) {
   return cp5.getProperties().getProperty(this, thePropertyName);
 }
Ejemplo n.º 4
0
 /** {@inheritDoc} */
 public ControllerProperty getProperty(String theSetter, String theGetter) {
   return cp5.getProperties().getProperty(this, theSetter, theGetter);
 }
Ejemplo n.º 5
0
 /** {@inheritDoc} */
 public T removeProperty(String thePropertyName) {
   cp5.getProperties().remove(this, thePropertyName);
   return me;
 }