Package com.iver.cit.gvsig.fmap.core

Examples of com.iver.cit.gvsig.fmap.core.GeneralPathX


  public String getInternalTableName(String tablename) {
    return tablename;
  }

  public Value getFieldValue(long rowIndex, int fieldId) throws DriverException {
    GeneralPathX gp = new GeneralPathX();
    gp.moveTo(10.0, 10.0);
    gp.lineTo(10.0, 20.0);
    gp.lineTo(20.0, 20.0);
    gp.lineTo(20.0, 10.0);
    gp.closePath();
    Value v = GeometryFactory.createPolygon2D(gp);
    return v;
  }
View Full Code Here

TOP

Related Classes of com.iver.cit.gvsig.fmap.core.GeneralPathX

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.