Package name.abuchen.portfolio.ui.handlers

Source Code of name.abuchen.portfolio.ui.handlers.AboutHandler

package name.abuchen.portfolio.ui.handlers;

import name.abuchen.portfolio.ui.dialogs.AboutDialog;

import org.eclipse.e4.core.contexts.ContextInjectionFactory;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.core.di.annotations.Execute;

public class AboutHandler
{
    @Execute
    public void execute(IEclipseContext context)
    {
        AboutDialog dialog = ContextInjectionFactory.make(AboutDialog.class, context);
        dialog.open();
    }
}
TOP

Related Classes of name.abuchen.portfolio.ui.handlers.AboutHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.