blob: 2e7b21cb4051f20a46e7188346f492d56cab9107 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.jdt.internal.core.search;
import org.eclipse.jdt.core.IJavaElementDelta;
import org.eclipse.jdt.core.search.IJavaSearchScope;
public abstract class AbstractSearchScope implements IJavaSearchScope {
/**
* @see IJavaSearchScope#includesBinaries()
* @deprecated
*/
public boolean includesBinaries() {
return true;
}
/**
* @see IJavaSearchScope#includesClasspaths()
* @deprecated
*/
public boolean includesClasspaths() {
return true;
}
/* (non-Javadoc)
* Process the given delta and refresh its internal state if needed.
* Returns whether the internal state was refreshed.
*/
public abstract void processDelta(IJavaElementDelta delta);
/**
* @see IJavaSearchScope#setIncludesBinaries(boolean)
* @deprecated
*/
public void setIncludesBinaries(boolean includesBinaries) {
// implements interface method
}
/**
* @see IJavaSearchScope#setIncludesClasspaths(boolean)
* @deprecated
*/
public void setIncludesClasspaths(boolean includesClasspaths) {
// implements interface method
}
}