01: package com.salmonllc.sql;
02:
03: /**
04: * For classes that want to be notified when changes are made to a datastore model must implement this interface and also register with the datastore they want to listen to
05: */
06: public interface ModelChangedListener {
07:
08: public void modelChanged(ModelChangedEvent evt);
09:
10: }
|