-
- All Superinterfaces:
DataContext
- All Known Implementing Classes:
ListDataProxy,ListDataView
public interface ListDataContext extends DataContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddidClear()voiddidDrop(long lower)voiddidInsert(long index, swim.structure.Value newValue)voiddidRemove(long index, swim.structure.Value oldValue)voiddidTake(long upper)voiddidUpdate(long index, swim.structure.Value newValue, swim.structure.Value oldValue)-
Methods inherited from interface swim.store.DataContext
didChange, didCommit
-
-
-
-
Method Detail
-
didUpdate
void didUpdate(long index, swim.structure.Value newValue, swim.structure.Value oldValue)
-
didInsert
void didInsert(long index, swim.structure.Value newValue)
-
didRemove
void didRemove(long index, swim.structure.Value oldValue)
-
didDrop
void didDrop(long lower)
-
didTake
void didTake(long upper)
-
didClear
void didClear()
-
-