/******************************************************************************* * Copyright (c) 2000, 2003 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package net.sourceforge.phpdt.internal.core; import net.sourceforge.phpdt.core.IBuffer; import net.sourceforge.phpdt.internal.core.util.LRUCache; /** * An LRU cache of IBuffers. */ public class BufferCache extends OverflowingLRUCache { /** * Constructs a new buffer cache of the given size. */ public BufferCache(int size) { super(size); } /** * Constructs a new buffer cache of the given size. */ public BufferCache(int size, int overflow) { super(size, overflow); } /** * Returns true if the buffer is successfully closed and removed from the * cache, otherwise false. * *

* NOTE: this triggers an external removal of this buffer by closing the * buffer. */ protected boolean close(LRUCacheEntry entry) { IBuffer buffer = (IBuffer) entry._fValue; if (buffer.hasUnsavedChanges()) { return false; } else { buffer.close(); return true; } } /** * Returns a new instance of the reciever. */ protected LRUCache newInstance(int size, int overflow) { return new BufferCache(size, overflow); } }