.
[taxeditor.git] / src / eu / etaxonomy / taxeditor / IModelListener.java
1 package eu.etaxonomy.taxeditor;
2
3 public interface IModelListener {
4 String ADDED="__added"; //$NON-NLS-1$
5 String REMOVED="__removed"; //$NON-NLS-1$
6 String CHANGED = "__changed"; //$NON-NLS-1$
7 void modelChanged(Object[] objects, String type, String property);
8 }