Interface ItemState.MergeResult
-
- All Known Implementing Classes:
ItemState.SimpleMergeResult
- Enclosing class:
- ItemState
public static interface ItemState.MergeResult
A MergeResult represents the result of aItemState.merge(ItemState, boolean)
operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Dispose this MergeResult and release all internal resources that are not needed any more.boolean
modified()
-
-
-
Method Detail
-
modified
boolean modified()
- Returns:
- true iff the target state of
ItemState.merge(ItemState, boolean)
was modified.
-
dispose
void dispose()
Dispose this MergeResult and release all internal resources that are not needed any more.
-
-