Package de.intarsys.tools.reflect
Interface IAccessSupport
public interface IAccessSupport
An object supporting reflective calls to its fields.
-
Method Summary
-
Method Details
-
getValue
Make a reflective get access to the fieldname
.- Parameters:
name
- The name of the field to get.- Returns:
- The field value
- Throws:
FieldException
-
setValue
Make a reflective set access to the fieldname
.- Parameters:
name
- The name of the field to get.value
- The new value for the field- Returns:
- The previous field value. This is an optional feature.
- Throws:
FieldException
-