blob: 48e28b6c23236dc56b70e0ca0bda98ec3bdad0d8 [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.status;
import org.eclipse.e4.core.contexts.ContextFunction;
import org.eclipse.e4.core.contexts.ContextInjectionFactory;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.osbp.vaaclipse.addons.common.api.status.IStatusManager;
import org.osgi.service.component.annotations.Component;
/**
* A factory for creating StatusManager objects.
*/
@Component(service = org.eclipse.e4.core.contexts.IContextFunction.class, property = { "service.context.key=org.eclipse.osbp.vaaclipse.addons.common.api.status.IStatusManager" })
public class StatusManagerFactory extends ContextFunction {
/* (non-Javadoc)
* @see org.eclipse.e4.core.contexts.ContextFunction#compute(org.eclipse.e4.core.contexts.IEclipseContext, java.lang.String)
*/
@Override
public Object compute(IEclipseContext context, String contextKey) {
// add the new object to the application context
MApplication application = context.get(MApplication.class);
IEclipseContext appCtx = application.getContext();
StatusManager manager = ContextInjectionFactory.make(
StatusManager.class, appCtx);
appCtx.set(IStatusManager.class, manager);
return manager;
}
}