Quantum version 2.4.1
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / actions / RefreshTableAction.java
diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/actions/RefreshTableAction.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/actions/RefreshTableAction.java
deleted file mode 100644 (file)
index d987d8a..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.quantum.actions;
-
-import com.quantum.view.tableview.TableView;
-
-import org.eclipse.jface.action.Action;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.ui.IViewActionDelegate;
-import org.eclipse.ui.IViewPart;
-
-/**
- * @author root
- * Implements the "Refresh Table" action for the TableView view
- */
-public class RefreshTableAction extends Action implements IViewActionDelegate {
-       TableView view;
-       /**
-        * @see org.eclipse.ui.IViewActionDelegate#init(IViewPart)
-        */
-       public void init(IViewPart view) {
-               this.view = (TableView) view;
-       }
-
-       /**
-        * @see org.eclipse.ui.IActionDelegate#run(IAction)
-        */
-       public void run(IAction action) {
-               run();
-       }
-       public void run() {
-               view.refreshCurrent();
-       }
-
-       /**
-        * @see org.eclipse.ui.IActionDelegate#selectionChanged(IAction, ISelection)
-        */
-       public void selectionChanged(IAction action, ISelection selection) {
-       }
-
-}