Package info.aduna.clustermap

Examples of info.aduna.clustermap.DefaultObject


          int y = e.getY();
          // resolve the object if the user double-clicked on
          // a cluster object.
          Object obj = panel.resolveObject(x, y);
          if (obj != null && (obj instanceof DefaultObject)) {
            DefaultObject defObj = (DefaultObject) obj;
            if (defObj.getLocation() != null) {
              URL url;
              try {
                url = new URL(defObj.getLocation());
                getAppletContext().showDocument(url, "_blank");
              } catch (MalformedURLException e1) {
                logger.error(e1);
              }
            }
View Full Code Here

TOP

Related Classes of info.aduna.clustermap.DefaultObject

Copyright © 2018 www.massapicom. 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.