]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/GenericFunction.java
Moved source into separate src directory due to popular request
[GpsPrune.git] / tim / prune / GenericFunction.java
diff --git a/tim/prune/GenericFunction.java b/tim/prune/GenericFunction.java
deleted file mode 100644 (file)
index 047ac74..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package tim.prune;
-
-import javax.swing.JFrame;
-
-/**
- * Generic function class for launching from the app
- */
-public abstract class GenericFunction
-{
-       /** Reference to app object */
-       protected App _app = null;
-       /** Reference to parent frame */
-       protected JFrame _parentFrame = null;
-
-
-       /**
-        * Constructor
-        * @param inApp app object
-        */
-       public GenericFunction(App inApp)
-       {
-               _app = inApp;
-               _parentFrame = inApp.getFrame();
-       }
-
-       /**
-        * Begin the function
-        */
-       public abstract void begin();
-
-       /**
-        * @return the key for the function name
-        */
-       public abstract String getNameKey();
-}