Package ca.nengo.ui.lib.actions

Examples of ca.nengo.ui.lib.actions.OpenURLAction.doAction()


                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

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.