Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/browser/org/eclipse/cdt/internal/core/browser/cache/TypeLocatorJob.java')
-rw-r--r--core/org.eclipse.cdt.core/browser/org/eclipse/cdt/internal/core/browser/cache/TypeLocatorJob.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/core/org.eclipse.cdt.core/browser/org/eclipse/cdt/internal/core/browser/cache/TypeLocatorJob.java b/core/org.eclipse.cdt.core/browser/org/eclipse/cdt/internal/core/browser/cache/TypeLocatorJob.java
deleted file mode 100644
index d5ebd5472ea..00000000000
--- a/core/org.eclipse.cdt.core/browser/org/eclipse/cdt/internal/core/browser/cache/TypeLocatorJob.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * QNX Software Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.internal.core.browser.cache;
-
-import org.eclipse.cdt.core.browser.ITypeInfo;
-import org.eclipse.cdt.core.browser.IWorkingCopyProvider;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.core.runtime.SubProgressMonitor;
-
-public class TypeLocatorJob extends BasicJob {
-
- public static final Object FAMILY = new Object();
- private ITypeInfo fLocateType;
- private ITypeCache fTypeCache;
- private IWorkingCopyProvider fWorkingCopyProvider;
-
- public TypeLocatorJob(ITypeInfo info, ITypeCache typeCache, IWorkingCopyProvider workingCopyProvider) {
- super(TypeCacheMessages.getString("TypeLocatorJob.jobName"), FAMILY); //$NON-NLS-1$
- fLocateType = info;
- fTypeCache = typeCache;
- fWorkingCopyProvider= workingCopyProvider;
- }
-
- public ITypeInfo getType() {
- return fLocateType;
- }
-
- protected IStatus runWithDelegatedProgress(IProgressMonitor monitor) throws InterruptedException {
- boolean success = false;
- long startTime = System.currentTimeMillis();
- trace("TypeLocatorJob: started"); //$NON-NLS-1$
-
- try {
- monitor.beginTask(TypeCacheMessages.getString("TypeLocatorJob.taskName"), 100); //$NON-NLS-1$
-
- if (monitor.isCanceled())
- throw new InterruptedException();
-
- TypeParser parser = new TypeParser(fTypeCache, fWorkingCopyProvider);
- success = parser.findType(fLocateType, new SubProgressMonitor(monitor, 100));
-
- if (monitor.isCanceled())
- throw new InterruptedException();
-
- } finally {
- long executionTime = System.currentTimeMillis() - startTime;
- if (success)
- trace("TypeLocatorJob: completed ("+ executionTime + " ms)"); //$NON-NLS-1$ //$NON-NLS-2$
- else
- trace("TypeLocatorJob: aborted ("+ executionTime + " ms)"); //$NON-NLS-1$ //$NON-NLS-2$
-
- monitor.done();
- }
-
- return Status.OK_STATUS;
- }
-}

Back to the top