Package org.tomighty.ui.menu

Source Code of org.tomighty.ui.menu.ShowAboutWindow

package org.tomighty.ui.menu;

import com.google.inject.Injector;
import org.tomighty.ui.about.AboutDialog;

import javax.inject.Inject;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class ShowAboutWindow implements ActionListener {

    @Inject
    private Injector injector;

    @Override
    public void actionPerformed(ActionEvent actionEvent) {
        AboutDialog about = injector.getInstance(AboutDialog.class);
        about.showDialog();
    }

}
TOP

Related Classes of org.tomighty.ui.menu.ShowAboutWindow

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.