blob: 1cc1253f43db068e7045dddb9e853abbbacfee23 [file] [log] [blame]
package org.eclipse.ui.internal.provisional.views.markers;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.commands.IHandlerListener;
public class AddTaskHandler implements IHandler {
public void addHandlerListener(IHandlerListener handlerListener) {
// TODO Auto-generated method stub
}
public void dispose() {
// TODO Auto-generated method stub
}
public Object execute(ExecutionEvent event) throws ExecutionException {
// TODO Auto-generated method stub
return null;
}
public boolean isEnabled() {
// TODO Auto-generated method stub
return false;
}
public boolean isHandled() {
// TODO Auto-generated method stub
return false;
}
public void removeHandlerListener(IHandlerListener handlerListener) {
// TODO Auto-generated method stub
}
}