diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-31 21:46:34 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-31 21:46:34 +0200 |
| commit | 53a8cefdbb7a2cf97b634dc52fc50f9fedd88a93 (patch) | |
| tree | fc0c1ad388283067bb255a47f93aeb9987b6a334 /src/client/GUI.java | |
| parent | a1d64fd67f9a775b3c004f51133449a55f878101 (diff) | |
Add GUI by typedevelop
Diffstat (limited to 'src/client/GUI.java')
| -rw-r--r-- | src/client/GUI.java | 22 |
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 |
