]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/gui/FunctionLauncher.java
Moved source into separate src directory due to popular request
[GpsPrune.git] / tim / prune / gui / FunctionLauncher.java
diff --git a/tim/prune/gui/FunctionLauncher.java b/tim/prune/gui/FunctionLauncher.java
deleted file mode 100644 (file)
index e846412..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-package tim.prune.gui;
-
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import tim.prune.GenericFunction;
-
-/**
- * Class to launch a function triggered by an action
- */
-public class FunctionLauncher implements ActionListener
-{
-       /** Function to launch */
-       private GenericFunction _function = null;
-
-       /**
-        * Constructor
-        * @param inFunction function to launch
-        */
-       public FunctionLauncher(GenericFunction inFunction)
-       {
-               _function = inFunction;
-       }
-
-       /**
-        * React to action
-        * @param e event
-        */
-       public void actionPerformed(ActionEvent e)
-       {
-               _function.begin();
-       }
-
-}
\ No newline at end of file