Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ElementCache.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ElementCache.java71
1 files changed, 0 insertions, 71 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ElementCache.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ElementCache.java
deleted file mode 100644
index 63656a5d469..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ElementCache.java
+++ /dev/null
@@ -1,71 +0,0 @@
-package org.eclipse.cdt.internal.core.model;
-
-/**********************************************************************
- * Copyright (c) 2002,2003 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * Rational Software - Initial API and implementation
-***********************************************************************/
-
-import org.eclipse.cdt.core.model.CModelException;
-import org.eclipse.cdt.core.model.IOpenable;
-import org.eclipse.cdt.internal.core.util.LRUCache;
-import org.eclipse.cdt.internal.core.util.OverflowingLRUCache;
-
-/**
- * An LRU cache of <code>CElements</code>.
- *
- * This class is similar to the JDT ElementCache class.
- */
-public class ElementCache extends OverflowingLRUCache {
-
- /**
- * Constructs a new element cache of the given size.
- */
- public ElementCache(int size) {
- super(size);
- }
- /**
- * Constructs a new element cache of the given size.
- */
- public ElementCache(int size, int overflow) {
- super(size, overflow);
- }
- /**
- * Returns true if the element is successfully closed and
- * removed from the cache, otherwise false.
- *
- * <p>NOTE: this triggers an external removal of this element
- * by closing the element.
- */
- protected boolean close(LRUCacheEntry entry) {
- IOpenable element = (IOpenable) entry._fKey;
- try {
- if (element.hasUnsavedChanges()) {
- return false;
- } /*else {
- // We must close an entire JarPackageFragmentRoot at once.
- if (element instanceof JarPackageFragment) {
- JarPackageFragment packageFragment= (JarPackageFragment) element;
- JarPackageFragmentRoot root = (JarPackageFragmentRoot) packageFragment.getParent();
- root.close();
- }*/ else {
- element.close();
- }
- return true;
- // }
- } catch (CModelException npe) {
- return false;
- }
- }
- /**
- * Returns a new instance of the reciever.
- */
- protected LRUCache newInstance(int size, int overflow) {
- return new ElementCache(size, overflow);
- }
-}

Back to the top