view org.eclipse.core.jobs/src/org/eclipse/core/internal/jobs/JobStatus.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2004, 2006 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 org.eclipse.core.internal.jobs.JobStatus;

import java.lang.all;

import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.IJobStatus;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.core.internal.jobs.JobManager;

/**
 * Standard implementation of the IJobStatus interface.
 */
public class JobStatus : Status, IJobStatus {
    private Job job;

    /**
     * Creates a new job status with no interesting error code or exception.
     * @param severity
     * @param job
     * @param message
     */
    public this(int severity, Job job, String message) {
        super(severity, JobManager.PI_JOBS, 1, message, null);
        this.job = job;
    }

    /* (non-Javadoc)
     * @see org.eclipse.core.runtime.jobs.IJobStatus#getJob()
     */
    public Job getJob() {
        return job;
    }
}