package net.sourceforge.phpdt.sql.actions; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IAction; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.viewers.ISelection; import org.eclipse.ui.IViewActionDelegate; import org.eclipse.ui.IViewPart; import net.sourceforge.phpdt.sql.Messages; import net.sourceforge.phpdt.sql.model.Table; import net.sourceforge.phpdt.sql.view.BookmarkView; import net.sourceforge.phpdt.sql.view.bookmark.TableNode; /** * @author root * */ public class DeleteAllRowsAction extends Action implements IViewActionDelegate { BookmarkView view; /** * @see org.eclipse.ui.IViewActionDelegate#init(IViewPart) */ public void init(IViewPart view) { this.view = (BookmarkView) view; } /** * @see org.eclipse.ui.IActionDelegate#run(IAction) */ public void run(IAction action) { run(); } public void run() { Object selection = view.getCurrent(); if (selection instanceof TableNode) { TableNode node = (TableNode) selection; if (node != null) { Table table = (Table) node.getTable(); System.out.println("==>" + table.getQualifiedName()); boolean flag = MessageDialog.openConfirm( view.getSite().getShell(), Messages.getString("bookmarkview.deleteAllRows") + table.getQualifiedName(), Messages.getString("bookmarkview.confirmDeleteAllRows")); if (flag) { table.deleteAllRows(); } } } } /** * @see org.eclipse.ui.IActionDelegate#selectionChanged(IAction, ISelection) */ public void selectionChanged(IAction action, ISelection selection) { } }