Implemented GUIAm2901DestDecode
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / ViewModelModifiable.java
1 package net.mograsim.logic.ui.model;
2
3 import net.mograsim.logic.ui.model.components.GUIComponent;
4 import net.mograsim.logic.ui.model.wires.GUIWire;
5
6 public class ViewModelModifiable extends ViewModel
7 {
8         @Override
9         public void componentCreated(GUIComponent component)
10         {
11                 super.componentCreated(component);
12         }
13
14         @Override
15         public void componentDestroyed(GUIComponent component)
16         {
17                 super.componentDestroyed(component);
18         }
19
20         @Override
21         public void wireCreated(GUIWire wire)
22         {
23                 super.wireCreated(wire);
24         }
25
26         @Override
27         public void wireDestroyed(GUIWire wire)
28         {
29                 super.wireDestroyed(wire);
30         }
31 }