blob: 21170d27365f95ce45407e60622448c41ef14490 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.picasso;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.swt.SWT;
import org.eclipse.ui.progress.UIJob;
public class ListenerJob extends UIJob {
private int extraCompositeMargin;
private boolean toolTip;
public ListenerJob(String name, int extraCompositeMargin, boolean toolTip) {
super(name);
this.extraCompositeMargin = extraCompositeMargin;
this.toolTip = toolTip;
}
public IStatus runInUIThread(IProgressMonitor monitor) {
getDisplay().addFilter(SWT.Show, new DebugFilter(extraCompositeMargin, toolTip));
return Status.OK_STATUS;
}
}