school/cs240/record-indexer/src/client/persistence/SyncContext.java

12 lines
206 B
Java
Raw Normal View History

2016-04-06 20:50:11 -07:00
package client.persistence;
import client.persistence.Cell;
public interface SyncContext {
public void onChangeCurrentCell(Cell cell);
public void onChangeCellValue(Cell cell, String value);
}