blob: 471e27cd5b180999a752c3192cfb5d11575acdec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2009 IBM Corporation and others.
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
* Oakland Software Incorporated - Added to CNF tests
*******************************************************************************/
package org.eclipse.ui.tests.navigator.jst;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.swt.graphics.Image;
public class CompressedJavaLibraries implements ICompressedNode {
private CompressedJavaProject compressedProject;
public CompressedJavaLibraries(CompressedJavaProject compressedProject) {
this.compressedProject = compressedProject;
}
@Override
public Image getImage() {
return null;
}
@Override
public String getLabel() {
return "Compressed Libraries";
}
@Override
public Object[] getChildren(ITreeContentProvider delegateContentProvider) {
List classpathContainers = new ArrayList();
Object[] delegateChildren = delegateContentProvider
.getChildren(compressedProject.getProject());
for (int i = 0; i < delegateChildren.length; i++) {
if (WebJavaContentProvider.IPACKAGE_FRAGMENT_ROOT_CLASS
.isInstance(delegateChildren[i])) {
try {
classpathContainers.add(delegateChildren[i]);
} catch (Exception e) {
}
} else if (!WebJavaContentProvider.IJAVA_ELEMENT_CLASS
.isInstance(delegateChildren[i])
&& !(delegateChildren[i] instanceof IResource)) {
classpathContainers.add(delegateChildren[i]);
}
}
return classpathContainers.toArray();
}
public CompressedJavaProject getCompressedProject() {
return compressedProject;
}
}