Package org.zkoss.zk.ui.sys
Interface PropertyAccess<T>
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BooleanPropertyAccess
,IntegerPropertyAccess
,IntPropertyAccess
,ObjectPropertyAccess
,StringPropertyAccess
public interface PropertyAccess<T> extends java.io.Serializable
A property access interface to speed up Java reflection performance.- Since:
- 8.0.0
- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<T>
getType()
T
getValue(Component cmp)
void
setValue(Component cmp, T value)
-