Package org.zkoss.bind
Interface Property
-
- All Known Implementing Classes:
PropertyImpl,WrongValuePropertyImpl
public interface PropertyRepresent a property of a base object in the binding.- Since:
- 6.0.0
- Author:
- henrichen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetBase()Returns the base object of this property.java.lang.StringgetProperty()Returns the name of this property.java.lang.ObjectgetValue()Returns the value object of this property.
-
-
-
Method Detail
-
getBase
java.lang.Object getBase()
Returns the base object of this property.- Returns:
- the base object of this property.
-
getValue
java.lang.Object getValue()
Returns the value object of this property.- Returns:
- the value object of this property.
-
getProperty
java.lang.String getProperty()
Returns the name of this property.- Returns:
- the name of this property.
-
-