blob: cdc143e33f28b034bc74a4b7db60cd2b67f2e961 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 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.datatools.connectivity.sqm.server.internal.ui.explorer.loading;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.viewers.StructuredViewer;
import org.eclipse.ui.progress.UIJob;
public class LoadingUIJob extends UIJob
{
private static final long DELAY = 200;
private LoadingNode placeHolder;
private StructuredViewer viewer;
public LoadingUIJob(StructuredViewer viewer, LoadingNode placeHolder)
{
super(placeHolder.getText(placeHolder));
this.viewer = viewer;
this.placeHolder = placeHolder;
setSystem(true);
setRule(new NonConflictingRule());
}
public IStatus runInUIThread(IProgressMonitor monitor)
{
if (!placeHolder.isDisposed())
{
viewer.refresh(placeHolder, true);
schedule(DELAY);
}
return Status.OK_STATUS;
}
public boolean belongsTo(Object family)
{
return family == LoadingNode.LOADING_FAMILY;
}
}