comparison dwtx/core/runtime/jobs/IJobStatus.d @ 122:9d0585bcb7aa

Add core.jobs package
author Frank Benoit <benoit@tionex.de>
date Tue, 12 Aug 2008 02:34:21 +0200
parents
children
comparison
equal deleted inserted replaced
121:c0304616ea23 122:9d0585bcb7aa
1 /*******************************************************************************
2 * Copyright (c) 2004, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.core.runtime.jobs.IJobStatus;
14
15 import dwt.dwthelper.utils;
16
17 import dwtx.core.runtime.IStatus;
18 import dwtx.core.runtime.jobs.Job;
19
20 /**
21 * Represents status relating to the execution of jobs.
22 *
23 * @see dwtx.core.runtime.IStatus
24 * @noimplement This interface is not intended to be implemented by clients.
25 */
26 public interface IJobStatus : IStatus {
27 /**
28 * Returns the job associated with this status.
29 *
30 * @return the job associated with this status
31 */
32 public Job getJob();
33 }