Revision 42276 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.jts/src/main/java/org/gvsig/fmap/geom/jts/primitive/curve/line/AbstractLine.java

View differences:

AbstractLine.java
499 499
        return anyVertex.is3D();
500 500
    }
501 501

  
502
//    /*
503
//     * (non-Javadoc)
504
//     *
505
//     * @see org.gvsig.fmap.geom.primitive.Line#toPoints()
506
//     */
507
//    public MultiPoint toPoints() throws GeometryException {
508
//        // TODO Auto-generated method stub
509
//        return null;
510
//    }
511
//
512
    /*
513
     * (non-Javadoc)
514
     *
515
     * @see org.gvsig.fmap.geom.primitive.Line#toLines()
516
     */
517
    public MultiLine toLines() throws GeometryException {
518
        // TODO Auto-generated method stub
519
        return null;
520
    }
521

  
522
    /*
523
     * (non-Javadoc)
524
     *
525
     * @see org.gvsig.fmap.geom.primitive.Line#toPolygons()
526
     */
527
    public MultiPolygon toPolygons() throws GeometryException {
528
        // TODO Auto-generated method stub
529
        return null;
530
    }
531

  
532 502
    protected boolean isClosed(){
533 503
        return coordinates.get(0).equals(coordinates.get(coordinates.size()-1));
534 504
    }

Also available in: Unified diff