X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2FGenericFunction.java;fp=tim%2Fprune%2FGenericFunction.java;h=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hp=047ac7475c5c628a6c4b99034490d81e74701051;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465;p=GpsPrune.git diff --git a/tim/prune/GenericFunction.java b/tim/prune/GenericFunction.java deleted file mode 100644 index 047ac74..0000000 --- a/tim/prune/GenericFunction.java +++ /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(); -}