diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwtx/core/runtime/jobs/IJobStatus.d	Tue Aug 12 02:34:21 2008 +0200
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2008 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 - Initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
+ *******************************************************************************/
+module dwtx.core.runtime.jobs.IJobStatus;
+
+import dwt.dwthelper.utils;
+
+import dwtx.core.runtime.IStatus;
+import dwtx.core.runtime.jobs.Job;
+
+/**
+ * Represents status relating to the execution of jobs.
+ *
+ * @see dwtx.core.runtime.IStatus
+ * @noimplement This interface is not intended to be implemented by clients.
+ */
+public interface IJobStatus : IStatus {
+    /**
+     * Returns the job associated with this status.
+     *
+     * @return the job associated with this status
+     */
+    public Job getJob();
+}