summaryrefslogtreecommitdiff
path: root/src/client/GUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/GUI.java')
-rw-r--r--src/client/GUI.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/client/GUI.java b/src/client/GUI.java
new file mode 100644
index 0000000..8c561ee
--- /dev/null
+++ b/src/client/GUI.java
@@ -0,0 +1,22 @@
+package org.manzerbredes.open_klm.client;
+
+import org.manzerbredes.open_klm.drivers.Driver;
+
+public interface GUI{
+
+ /**
+ * Get the type of driver the GUI handle
+ *
+ * @return class that represent the type of the driver the GUI handle
+ */
+ public Class<?> getType();
+
+ /**
+ *
+ * Init the GUI with driver
+ *
+ * @param driver
+ * @return
+ */
+ public boolean initGUI(Driver driver);
+} \ No newline at end of file