Interface FieldAccess.Defined
-
- All Known Implementing Classes:
FieldAccess.AccessDispatcher
,FieldAccess.OfGenericField
- Enclosing class:
- FieldAccess
public static interface FieldAccess.Defined
Representation of a field access for which a getter and a setter can be created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StackManipulation
read()
Creates a getter representation for a given field.StackManipulation
write()
Creates a setter representation for a given field.
-
-
-
Method Detail
-
read
StackManipulation read()
Creates a getter representation for a given field.- Returns:
- A stack manipulation representing the retrieval of a field value.
-
write
StackManipulation write()
Creates a setter representation for a given field.- Returns:
- A stack manipulation representing the setting of a field value.
-
-