Example usage for org.eclipse.jdt.core.search IJavaSearchScope includesClasspaths

List of usage examples for org.eclipse.jdt.core.search IJavaSearchScope includesClasspaths

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.search IJavaSearchScope includesClasspaths.

Prototype

boolean includesClasspaths();

Source Link

Document

Returns whether this scope includes classpaths defined by the projects of the resources of this search scope.

Usage

From source file:org.eclipse.xtext.common.types.xtext.ui.IntersectingJavaSearchScope.java

License:Open Source License

@Override
@Deprecated/* w  ww  .  j  a  va  2 s .  c om*/
public boolean includesClasspaths() {
    for (IJavaSearchScope scope : scopes)
        if (!scope.includesClasspaths())
            return false;
    return true;
}

From source file:org.summer.dsl.model.types.xtext.ui.IntersectingJavaSearchScope.java

License:Open Source License

@Deprecated
public boolean includesClasspaths() {
    for (IJavaSearchScope scope : scopes)
        if (!scope.includesClasspaths())
            return false;
    return true;//from  w w  w.ja  v  a  2 s.co m
}