Copyright (c) 2000, 2008 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * 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 Also:
  • includesBinaries.includesBinaries()
Deprecated:
/** * @see IJavaSearchScope#includesBinaries() * @deprecated */
@Override public boolean includesBinaries() { return true; }
See Also:
  • includesClasspaths.includesClasspaths()
Deprecated:
/** * @see IJavaSearchScope#includesClasspaths() * @deprecated */
@Override 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, int eventType);
See Also:
  • setIncludesBinaries.setIncludesBinaries(boolean)
Deprecated:
/** * @see IJavaSearchScope#setIncludesBinaries(boolean) * @deprecated */
@Override public void setIncludesBinaries(boolean includesBinaries) { // implements interface method }
See Also:
  • setIncludesClasspaths.setIncludesClasspaths(boolean)
Deprecated:
/** * @see IJavaSearchScope#setIncludesClasspaths(boolean) * @deprecated */
@Override public void setIncludesClasspaths(boolean includesClasspaths) { // implements interface method } }