Package net.sf.mzmine.desktop

Examples of net.sf.mzmine.desktop.Desktop.browse()


      if ((urlString == null) || (urlString.length() == 0))
        return;

      try {
        URL compoundURL = new URL(urlString);
        desktop.browse(compoundURL.toURI());
      } catch (Exception ex) {
        logger.severe("Error trying to launch default browser: "
            + ex.getMessage());
      }
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.