Package de.intarsys.tools.reflect
Interface IAccessSupportAccessibility
-
public interface IAccessSupportAccessibilityAn object supporting reflective calls to its fields.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAccessMode(java.lang.String name)Query the access state of the propertynamewithin this.
-
-
-
Field Detail
-
NONE
static final int NONE
- See Also:
- Constant Field Values
-
READONLY
static final int READONLY
- See Also:
- Constant Field Values
-
READWRITE
static final int READWRITE
- See Also:
- Constant Field Values
-
WRITEONLY
static final int WRITEONLY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAccessMode
int getAccessMode(java.lang.String name) throws FieldAccessExceptionQuery the access state of the propertynamewithin this.- Parameters:
name- The name of the field to get.- Returns:
- The current access state (one of NONE, READONLY, READWRITE or WRITEONLY)
- Throws:
FieldExceptionFieldAccessException
-
-