01: package org.drools.eclipse.dsl.editor;
02:
03: import org.drools.lang.dsl.DSLMappingEntry;
04:
05: /**
06: * Used to keep the view up to date with changes in mappings.
07: *
08: * @author Michael Neale
09: */
10: public interface IMappingListViewer {
11:
12: public void addMapping(DSLMappingEntry item);
13:
14: public void removeMapping(DSLMappingEntry item);
15:
16: public void updateMapping(DSLMappingEntry item);
17:
18: }
|