Package io.ebean
Interface ModifyAwareType
-
public interface ModifyAwareType
Owner object notified when a modification is detected.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isMarkedDirty()
Return true if the value is considered dirty.void
setMarkedDirty(boolean markedDirty)
Marks the object as modified.
-
-
-
Method Detail
-
isMarkedDirty
boolean isMarkedDirty()
Return true if the value is considered dirty. Note that this resets the dirty status back to clean.
-
setMarkedDirty
void setMarkedDirty(boolean markedDirty)
Marks the object as modified.
-
-