blob: cf3b41af744576c8876c5811464ef6034cdf7b08 [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.vaaclipse.addons.common.api.explorer;
import org.eclipse.e4.core.contexts.IEclipseContext;
/**
* Manages the explorer info. Explorer infos are used to show applications,
* processes,... to the user.
*/
public interface IExplorerInfoManager {
/**
* Needs to return an iterable of explorer infos that are located in the
* given parent. These infos will be showed in the explorer view.
* <p>
* Note, that the manager will also add the new loaded {@link IExplorerInfo
* infos} as childs to the given parent.
*
* @param parent
* the parent
* @param context
* the context
* @return the explorer info
*/
Iterable<IExplorerInfo> getExplorerInfo(IExplorerCategory parent,
IEclipseContext context);
}