blob: 041f0f590e69fd34033350d8dfbb4280e0dd589b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2013 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tools.runtime;
//import org.eclipse.core.runtime.internal.stats.BundleStats;
//import org.eclipse.core.runtime.internal.stats.StatsManager;
import org.eclipse.core.tools.IFlattable;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.viewers.Viewer;
/**
* Content provider for the ActivePluginsView
*/
public class ActivePluginsViewContentProvider implements ITreeContentProvider, IFlattable {
// private boolean flat;
@Override
public void setFlat(boolean mode) {
// flat = mode;
}
@Override
public void dispose() {
// do nothing
}
@Override
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
// do nothing
}
@Override
public Object[] getChildren(Object element) {
// if (flat || !(element instanceof BundleStats))
return new Object[0];
// List stats = ((BundleStats) element).getBundlesActivated();
// return stats.toArray(new Object[stats.size()]);
}
@Override
public Object getParent(Object element) {
// if (flat || !(element instanceof BundleStats))
return null;
// return ((BundleStats) element).getActivatedBy().getSymbolicName();
}
@Override
public boolean hasChildren(Object element) {
// if (flat || !(element instanceof BundleStats))
return false;
// return element == null ? false : ((BundleStats) element).getBundlesActivated().size() > 0;
}
@Override
public Object[] getElements(Object inputElement) {
// if (!StatsManager.MONITOR_ACTIVATION || inputElement != BundleStats.class)
return null;
// BundleStats[] active = StatsManager.getDefault().getBundles();
// ArrayList result = new ArrayList(active.length);
// for (int i = 0; i < active.length; i++) {
// if (flat || active[i].getActivatedBy() == null)
// result.add(active[i]);
// }
// return result.toArray(new BundleStats[result.size()]);
}
}