Examples of TextFileViewer


Examples of com.tagtraum.perf.gcviewer.TextFileViewer

public class LicenseAction extends AbstractAction {

    private TextFileViewer readmeDialog;

    public LicenseAction(final Frame parent) {
        readmeDialog = new TextFileViewer(parent, "META-INF/LICENSE.txt");
        putValue(NAME, LocalisationHelper.getString("main_frame_menuitem_license"));
        putValue(SHORT_DESCRIPTION, LocalisationHelper.getString("main_frame_menuitem_hint_license"));
        putValue(MNEMONIC_KEY, new Integer(LocalisationHelper.getString("main_frame_menuitem_mnemonic_license").charAt(0)));
        putValue(ACTION_COMMAND_KEY, "about");
        // TODO icon?
View Full Code Here

Examples of com.tagtraum.perf.gcviewer.TextFileViewer

public class ReadmeAction extends AbstractAction {

    private TextFileViewer readmeDialog;

    public ReadmeAction(final Frame parent) {
        readmeDialog = new TextFileViewer(parent, "META-INF/README");
        putValue(NAME, LocalisationHelper.getString("main_frame_menuitem_readme"));
        putValue(SHORT_DESCRIPTION, LocalisationHelper.getString("main_frame_menuitem_hint_readme"));
        putValue(MNEMONIC_KEY, new Integer(LocalisationHelper.getString("main_frame_menuitem_mnemonic_readme").charAt(0)));
        putValue(ACTION_COMMAND_KEY, "readme");
        // TODO icon?
View Full Code Here
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.