blob: 2ded2ff4879e3f874826f8ad7dfe9ac8bfb6d5a3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime.jobs;
import org.eclipse.core.runtime.IStatus;
/**
* Represents status relating to the execution of jobs.
*
* @see org.eclipse.core.runtime.IStatus
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
public interface IJobStatus extends IStatus {
/**
* Returns the job associated with this status.
*
* @return the job associated with this status
*/
Job getJob();
}