Package com.tagtraum.perf.gcviewer

Examples of com.tagtraum.perf.gcviewer.AboutDialog


*/
public class About extends AbstractAction {
    private AboutDialog aboutDialog;

    public About(final Frame parent) {
        aboutDialog = new AboutDialog(parent);
        putValue(NAME, LocalisationHelper.getString("main_frame_menuitem_about"));
        putValue(SHORT_DESCRIPTION, LocalisationHelper.getString("main_frame_menuitem_hint_about"));
        putValue(MNEMONIC_KEY, new Integer(LocalisationHelper.getString("main_frame_menuitem_mnemonic_about").charAt(0)));
        putValue(ACTION_COMMAND_KEY, "about");
        putValue(SMALL_ICON, new ImageIcon(Toolkit.getDefaultToolkit().getImage(parent.getClass().getResource("images/about.png"))));
View Full Code Here

TOP

Related Classes of com.tagtraum.perf.gcviewer.AboutDialog

Copyright © 2018 www.massapicom. 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.