Package it.tidalwave.role.ui
Interface Changeable<T>
-
- All Known Implementing Classes:
BoundProperty
,CopyIfEmptyOrConform
,WeakCopyFunctionSupport
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Changeable<T>
The role of an object that can change its value.- Author:
- Fabrizio Giudici
- Stereotype:
- role
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
set(T value)
Sets a new value to this object.
-
-
-
Method Detail
-
set
void set(T value)
Sets a new value to this object.- Parameters:
value
- the new value
-
-