Splitted ViewModel and ViewModelModifiable
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / ViewModelModifiable.java
diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModelModifiable.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModelModifiable.java
new file mode 100644 (file)
index 0000000..21863db
--- /dev/null
@@ -0,0 +1,31 @@
+package net.mograsim.logic.ui.model;
+
+import net.mograsim.logic.ui.model.components.GUIComponent;
+import net.mograsim.logic.ui.model.wires.GUIWire;
+
+public class ViewModelModifiable extends ViewModel
+{
+       @Override
+       public void componentCreated(GUIComponent component)
+       {
+               super.componentCreated(component);
+       }
+
+       @Override
+       public void componentDestroyed(GUIComponent component)
+       {
+               super.componentDestroyed(component);
+       }
+
+       @Override
+       public void wireCreated(GUIWire wire)
+       {
+               super.wireCreated(wire);
+       }
+
+       @Override
+       public void wireDestroyed(GUIWire wire)
+       {
+               super.wireDestroyed(wire);
+       }
+}
\ No newline at end of file