Examples of OpenUrlAction


Examples of ca.nengo.ui.lib.actions.OpenURLAction

                editor.setEditable(false);
                editor.setOpaque(false);
                editor.addHyperlinkListener(new HyperlinkListener() {
                  public void hyperlinkUpdate(HyperlinkEvent hle) {
                    if (HyperlinkEvent.EventType.ACTIVATED.equals(hle.getEventType())) {
                      OpenURLAction a = new OpenURLAction(hle.getDescription(),hle.getDescription());
                      a.doAction();
                    }               
                  }
                });
                JOptionPane.showMessageDialog(help, editor, propDescriptor.getName(), JOptionPane.INFORMATION_MESSAGE, null);
            }
View Full Code Here

Examples of ca.nengo.ui.lib.actions.OpenURLAction

            editor.setEditable(false);
            editor.setOpaque(false);
            editor.addHyperlinkListener(new HyperlinkListener() {
              public void hyperlinkUpdate(HyperlinkEvent hle) {
                if (HyperlinkEvent.EventType.ACTIVATED.equals(hle.getEventType())) {
                  new OpenURLAction(hle.getDescription(),hle.getDescription()).doAction();
                }               
              }
            });

            JOptionPane.showMessageDialog(UIEnvironment.getInstance(), editor, getAppName()
View Full Code Here

Examples of ca.nengo.ui.lib.actions.OpenURLAction

        MenuBuilder helpMenu = new MenuBuilder("Help");
        helpMenu.getJMenu().setMnemonic(KeyEvent.VK_H);
        menuBar.add(helpMenu.getJMenu());

        helpMenu.addAction(new OpenURLAction("Documentation (opens in browser)",
                "http://www.nengo.ca/documentation"), KeyEvent.VK_F1);
        helpMenu.addAction(new TipsAction("Tips and Commands", false), KeyEvent.VK_T);
        boolean isMacOS = System.getProperty("mrj.version") != null;
        if (!isMacOS) {
            helpMenu.addAction(new AboutAction("About"), KeyEvent.VK_A);
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.actions.support.OpenUrlAction

    helpMenu.add( new ShowOnlineHelpAction( "Getting Started", HelpUrls.GETTINGSTARTED_HELP_URL ) );
    helpMenu.add( new SearchForumAction() );
    helpMenu.addSeparator();
    helpMenu.add( new ShowSystemPropertiesAction() );
    helpMenu.addSeparator();
    helpMenu.add( new OpenUrlAction( "soapui.org", "http://www.soapui.org" ) );
    helpMenu.add( new ShowOnlineHelpAction( "soapUI Pro Trial", HelpUrls.TRIAL_URL,
        "Apply for soapUI Pro Trial License", "/favicon.png" ) );
    helpMenu.addSeparator();
    helpMenu.add( new AboutAction() );
    return helpMenu;
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.actions.support.OpenUrlAction

        helpMenu.add(new VersionUpdateAction());
        helpMenu.addSeparator();
        helpMenu.add(new ShowOnlineHelpAction("SoapUI Pro Trial", HelpUrls.TRIAL_URL,
                "Apply for SoapUI Pro Trial License", "/favicon.png"));
        helpMenu.addSeparator();
        helpMenu.add(new OpenUrlAction("soapui.org", "http://www.soapui.org"));
        helpMenu.add(new OpenUrlAction("smartbear.com", "http://smartbear.com"));
        helpMenu.addSeparator();
        helpMenu.add(new AboutAction());
        return helpMenu;
    }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.actions.support.OpenUrlAction

    l.addFeature("id", "yisufuyou-id");
    return new LicenseData(l);
  }

  public static OpenUrlAction createBuyLicenseAction() {
    return new OpenUrlAction("Just For Fun", "http://www.guoyukun.cn");
  }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.actions.support.OpenUrlAction

  public static LicenseData loadLicense(InputStream paramInputStream) {
    return e;
  }

  public static OpenUrlAction createBuyLicenseAction() {
    return new OpenUrlAction("Buy License",
        "http:// www.soapui.org /buypro");
  }
View Full Code Here

Examples of ru.snake.amazonwatcher.actions.OpenUrlAction

    addItemAction = new AddItemAction(this, productModel);
    editItemAction = new EditItemAction(this, productModel, selectionModel);
    removeItemAction = new RemoveItemAction(this, productModel,
        selectionModel);
    openUrlAction = new OpenUrlAction(productModel, selectionModel);
    updateAction = new UpdateAction(productModel, statusBar);
    closeAction = new CloseAction(this);

    TableDoubleClick tableDoubleClick = new TableDoubleClick(openUrlAction);
    productTable.addMouseListener(tableDoubleClick);
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.