Examples of UriViewer


Examples of org.sintef.umt.utils.UriViewer

    } else if (action.equalsIgnoreCase ("Open Recent")) {
      projectmanager.saveProject();
      String filename = ((JMenuItem)ae.getSource()).getToolTipText();
      openSelectedFile (filename);
    } else if (action.equalsIgnoreCase("About")) {
      UriViewer viewer = new UriViewer ("About", true);
      viewer.setFile(docs_dir + "about.html");
    } else if (action.equalsIgnoreCase("tool help")) {
      UriViewer viewer = new UriViewer ("Tool help", true);
      viewer.setFile(docs_dir + "index.html")
    } else if (action.equalsIgnoreCase("developers guide")) {
      UriViewer viewer = new UriViewer ("Developers Guide", true);
      viewer.setFile(docs_dir + "developers_guide.html")
    } else if (action.equalsIgnoreCase("Transformations")) {
      /* Launch transformation editor */
      launchEditor (transformationeditor, "Editor Transformations");
    } else if (action.equalsIgnoreCase("Profiles")) {
      /* Launch profiles editor */   
 
View Full Code Here

Examples of org.sintef.umt.utils.UriViewer

 
    hutntext = new XMLEditor ();
    // hutntext.setContentType ("text/html");   
    hutntext.setToolTipText ("Area for display and edit of XMI-light text.");

    _infoviewer = new UriViewer (false);
    _infoviewer.setViewerListener(this);   
   
    _viewersplit.setLeftComponent(new JScrollPane(hutneditor));
    _viewersplit.setRightComponent(hutntext)
   
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.