01: /**
02: *
03: */package gui.section;
04:
05: import diagram.section.EnvEntry;
06:
07: /**
08: * @author sh
09: *
10: */
11: public interface IEnvEntryViewer {
12: /**
13: * Update the view to reflect the fact that an EnvEntry was added
14: * to the EnvEntry list
15: *
16: * @param envEntry
17: */
18: public void addEnvEntry(EnvEntry envEntry);
19:
20: /**
21: * Update the view to reflect the fact that an EnvEntry was removed
22: * from the EnvEntry list
23: *
24: * @param envEntry
25: */
26: public void removeEnvEntry(EnvEntry envEntry);
27:
28: /**
29: * Update the view to reflect the fact that one of the EnvEntry
30: * was modified
31: *
32: * @param envEntry
33: */
34: public void updateEnvEntry(EnvEntry envEntry);
35: }
|