blob: 29ac7b7ca5ce0a2c88ab6ce5253048c0f645f87f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.core.commands;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.debug.core.IRequest;
/**
* @since 3.3
*/
public class Request implements IRequest {
private IStatus fStatus;
private boolean fCanceled = false;
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.IStatusCollector#done()
*/
public void done() {
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.IStatusCollector#getStatus()
*/
public IStatus getStatus() {
return fStatus;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.IStatusCollector#setStatus(org.eclipse.core.runtime.IStatus)
*/
public void setStatus(IStatus status) {
fStatus = status;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.IRequest#cancel()
*/
public synchronized void cancel() {
fCanceled = true;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.IRequest#isCanceled()
*/
public synchronized boolean isCanceled() {
return fCanceled;
}
}