com.ifedorenko.p2browser.director.IInstallableUnitHierarchyCalculator.java Source code

Java tutorial

Introduction

Here is the source code for com.ifedorenko.p2browser.director.IInstallableUnitHierarchyCalculator.java

Source

/*******************************************************************************
 * 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();
}