Package org.zkoss.bind.impl
Class PropertyImpl
- java.lang.Object
-
- org.zkoss.bind.impl.PropertyImpl
-
- All Implemented Interfaces:
java.io.Serializable,Property
public class PropertyImpl extends java.lang.Object implements Property, java.io.Serializable
Implementation of a property.- Since:
- 6.0.0
- Author:
- henrichen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyImpl(java.lang.Object base, java.lang.String property, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)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.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getBase
public java.lang.Object getBase()
Description copied from interface:PropertyReturns the base object of this property.
-
getValue
public java.lang.Object getValue()
Description copied from interface:PropertyReturns the value object of this property.
-
getProperty
public java.lang.String getProperty()
Description copied from interface:PropertyReturns the name of this property.- Specified by:
getPropertyin interfaceProperty- Returns:
- the name of this property.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-