Package com.vividsolutions.jtstest.testbuilder.model

Examples of com.vividsolutions.jtstest.testbuilder.model.GeometryTransferable


 
  public static void copyToClipboard(Object o, boolean isFormatted)
  {
    if (o instanceof Geometry) {
      Toolkit.getDefaultToolkit().getSystemClipboard().setContents(
          new GeometryTransferable((Geometry) o, isFormatted), null);
    }
    else 
      // transfer as string
      Toolkit.getDefaultToolkit().getSystemClipboard().setContents(
        new StringSelection(o.toString()), null);
View Full Code Here

TOP

Related Classes of com.vividsolutions.jtstest.testbuilder.model.GeometryTransferable

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.