1 package net.sourceforge.phpdt.sql.actions;
 
   3 import org.eclipse.jface.action.Action;
 
   4 import org.eclipse.jface.action.IAction;
 
   5 import org.eclipse.jface.viewers.ISelection;
 
   6 import org.eclipse.ui.IViewActionDelegate;
 
   7 import org.eclipse.ui.IViewPart;
 
   9 import net.sourceforge.phpdt.sql.sql.SQLHelper;
 
  10 import net.sourceforge.phpdt.sql.view.BookmarkView;
 
  15  * To change this generated comment edit the template variable "typecomment":
 
  16  * Window>Preferences>Java>Templates.
 
  17  * To enable and disable the creation of type comments go to
 
  18  * Window>Preferences>Java>Code Generation.
 
  20 public class RefreshBookmarkAction extends Action implements IViewActionDelegate {
 
  21         SQLHelper helper = new SQLHelper();
 
  25          * @see org.eclipse.ui.IViewActionDelegate#init(IViewPart)
 
  27         public void init(IViewPart view) {
 
  28                 this.view = (BookmarkView) view;
 
  32          * @see org.eclipse.ui.IActionDelegate#run(IAction)
 
  34         public void run(IAction action) {
 
  38                 view.refreshBookmarkData();
 
  42          * @see org.eclipse.ui.IActionDelegate#selectionChanged(IAction, ISelection)
 
  44         public void selectionChanged(IAction action, ISelection selection) {