1 package com.bull.eclipse.jonas.actions; 2 3 4 import org.eclipse.jface.action.IAction; 5 import org.eclipse.jface.viewers.ISelection; 6 import org.eclipse.ui.IActionDelegate; 7 8 9 13 14 public abstract class AbstractExportActionDelegate implements IActionDelegate 15 { 16 17 private ISelection selection; 18 19 public void run( IAction a ) 20 { 21 56 } 57 58 59 public void selectionChanged( IAction a, ISelection sel ) 60 { 61 selection = sel; 62 } 63 64 65 71 abstract public String targetDir(); 72 73 } 74 75 | Popular Tags |