view org.eclipse.core.jobs/src/org/eclipse/core/internal/jobs/JobChangeEvent.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) 2003, 2005 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.JobChangeEvent;

import java.lang.all;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.jobs.IJobChangeEvent;
import org.eclipse.core.runtime.jobs.Job;

public class JobChangeEvent : IJobChangeEvent {
    /**
     * The job on which this event occurred.
     */
    Job job = null;
    /**
     * The result returned by the job's run method, or <code>null</code> if
     * not applicable.
     */
    IStatus result = null;
    /**
     * The amount of time to wait after scheduling the job before it should be run,
     * or <code>-1</code> if not applicable for this type of event.
     */
    long delay = -1;
    /**
     * Whether this job is being immediately rescheduled.
     */
    bool reschedule = false;

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public long getDelay() {
        return delay;
    }

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public Job getJob() {
        return job;
    }

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public IStatus getResult() {
        return result;
    }
}