Example usage for org.eclipse.jdt.core IJavaModel getNonJavaResources

List of usage examples for org.eclipse.jdt.core IJavaModel getNonJavaResources

Introduction

In this page you can find the example usage for org.eclipse.jdt.core IJavaModel getNonJavaResources.

Prototype

Object[] getNonJavaResources() throws JavaModelException;

Source Link

Document

Returns an array of non-Java resources (that is, non-Java projects) in the workspace.

Usage

From source file:com.redhat.ceylon.eclipse.code.explorer.PackageExplorerContentProvider.java

License:Open Source License

private Object[] getNonJavaProjects(IJavaModel model) throws JavaModelException {
    return model.getNonJavaResources();
}