|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface HasProperties
Implementations of this interface allow for dynamic access of their JavaBean properties by name. Since this is a GWT client-side interface, all implementations must be code generated in the absence of Java reflection.
Method Summary | |
---|---|
Object |
get(String propertyName)
Returns the value of the JavaBean property with the given name. |
void |
set(String propertyName,
Object value)
Sets the value of the JavaBean property with the given name. |
Method Detail |
---|
Object get(String propertyName)
propertyName
- the name of the JavaBean property, must not be null.
NonExistingPropertyException
- if the implementing bean does not have a property with the given name.void set(String propertyName, Object value)
propertyName
- the name of the JavaBean property, must not be null.value
- the value to set.
NonExistingPropertyException
- if the implementing bean does not have a property with the given name.
|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |