1 11 12 package org.eclipse.update.operations; 13 14 import java.lang.reflect.*; 15 16 import org.eclipse.core.runtime.*; 17 18 28 public interface IOperation { 29 33 public abstract boolean isProcessed(); 34 37 public abstract void markProcessed(); 38 46 public abstract boolean execute(IProgressMonitor pm, IOperationListener listener) throws CoreException, InvocationTargetException; 47 } 48 | Popular Tags |