blob: f7903f04fc37722aeb9640b728d6096466316f82 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 IBM Corporation.
* 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
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jdt.core.IClasspathContainer;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.compiler.CharOperation;
import org.eclipse.jdt.internal.compiler.env.IModule;
import org.eclipse.jdt.internal.compiler.env.IModule.IModuleReference;
public class ModulePathContainer implements IClasspathContainer{
private IJavaProject project;
public ModulePathContainer(IJavaProject project) {
this.project = project;
}
@Override
public IClasspathEntry[] getClasspathEntries() {
//
List<IClasspathEntry> entries = new ArrayList<>();
ModuleSourcePathManager manager = JavaModelManager.getModulePathManager();
try {
IModule module = ((JavaProject)this.project).getModule();
if (module == null)
return new IClasspathEntry[0];
for (IModuleReference ref : module.requires()) {
JavaProject refRoot = manager.getModuleRoot(CharOperation.charToString(ref.name()));
if (refRoot == null)
continue;
IPath path = refRoot.getPath();
entries.add(JavaCore.newProjectEntry(path, ref.isPublic()));
}
} catch (JavaModelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return entries.toArray(new IClasspathEntry[entries.size()]);
}
@Override
public String getDescription() {
//
return "Module source path"; //$NON-NLS-1$
}
@Override
public int getKind() {
//
return K_APPLICATION;
}
@Override
public IPath getPath() {
//
return new Path(JavaCore.MODULE_PATH_CONTAINER_ID);
}
}