blob: 11b91c095f8a29494e322b268e4ec1d8c2fb7a3c [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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);
}