blob: aceb4d97d57e9a0bbe23e14a6677eb61ac31ad00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 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.debug.ui.classpath;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab;
import org.eclipse.jdt.launching.IRuntimeClasspathEntry;
/**
* Content provider that maintains a list of classpath entries which are shown in a tree
* viewer.
*/
public class DependenciesContentProvider extends ClasspathContentProvider {
public DependenciesContentProvider(JavaClasspathTab tab) {
super(tab);
}
@Override
public IClasspathEntry[] getUserClasspathEntries() {
return model.getEntries(DependencyModel.MODULE_PATH);
}
@Override
public IClasspathEntry[] getBootstrapClasspathEntries() {
return model.getEntries(DependencyModel.CLASS_PATH);
}
@Override
public void setEntries(IRuntimeClasspathEntry[] entries) {
model.removeAll();
for (IRuntimeClasspathEntry entry : entries) {
switch (entry.getClasspathProperty()) {
case IRuntimeClasspathEntry.MODULE_PATH:
model.addEntry(DependencyModel.MODULE_PATH, entry);
break;
default:
model.addEntry(DependencyModel.CLASS_PATH, entry);
break;
}
}
refresh();
}
}