Java tutorial
/******************************************************************************* * Copyright (c) 2012 Igor Fedorenko * 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: * Igor Fedorenko - initial API and implementation *******************************************************************************/ package com.ifedorenko.p2browser.director; import java.util.List; import org.eclipse.equinox.p2.metadata.IInstallableUnit; import org.eclipse.jface.operation.IRunnableWithProgress; public interface IInstallableUnitHierarchyCalculator extends IRunnableWithProgress { public InstallableUnitDAG getHierarchy(); public List<IInstallableUnit> getList(); }