/******************************************************************************* * Copyright (c) 2000, 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 Corporation - initial API and implementation *******************************************************************************/ package org.rubypeople.rdt.internal.ui; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.SubProgressMonitor; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.ui.progress.UIJob; import org.rubypeople.rdt.core.RubyCore; import org.rubypeople.rdt.ui.RubyUI; public class InitializeAfterLoadJob extends UIJob { private final class RealJob extends Job { public RealJob(String name) { super(name); } protected IStatus run(IProgressMonitor monitor) { monitor.beginTask("", 10); //$NON-NLS-1$ try { RubyCore.initializeAfterLoad(new SubProgressMonitor(monitor, 6)); RubyPlugin.getDefault().initializeAfterLoad(new SubProgressMonitor(monitor, 4)); } catch (CoreException e) { RubyPlugin.log(e); return e.getStatus(); } return new Status(IStatus.OK, RubyPlugin.getPluginId(), IStatus.OK, "", null); //$NON-NLS-1$ } public boolean belongsTo(Object family) { return RubyUI.ID_PLUGIN.equals(family); } } public InitializeAfterLoadJob() { super(RubyUIMessages.InitializeAfterLoadJob_starter_job_name); setSystem(true); } public IStatus runInUIThread(IProgressMonitor monitor) { Job job = new RealJob(RubyUIMessages.RubyPlugin_initializing_ui); job.setPriority(Job.SHORT); job.schedule(); return new Status(IStatus.OK, RubyPlugin.getPluginId(), IStatus.OK, "", null); //$NON-NLS-1$ } }