Revision 23706 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FMultiPoint2D.java

View differences:

FMultiPoint2D.java
260 260
     * @see com.iver.cit.gvsig.fmap.core.IGeometry#drawInts(java.awt.Graphics2D, com.iver.cit.gvsig.fmap.ViewPort, com.iver.cit.gvsig.fmap.core.v02.FSymbol)
261 261
     */
262 262
    public void drawInts(Graphics2D g, ViewPort vp, ISymbol symbol, Cancellable cancel) {
263
        draw(g,vp, symbol, cancel);
264

  
263
//        draw(g,vp, symbol, cancel);
264
    	for (int i = 0; i < points.length; i++) {
265
			points[i].drawInts(g,vp,symbol,cancel);
266
		}
265 267
    }
266 268
	/* (non-Javadoc)
267 269
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#getHandlers(int)
......
396 398
	}
397 399
	public void drawInts(Graphics2D graphics2D, ViewPort viewPort, double dpi,
398 400
			CartographicSupport cartographicSymbol, Cancellable cancel) {
399
		// TODO Auto-generated method stub
400
		throw new Error("Not yet implemented!");
401
		
401
		for (int i = 0; i < points.length; i++) {
402
			points[i].drawInts(graphics2D,viewPort,dpi,cartographicSymbol,cancel);
403
		}
404

  
402 405
	}
403 406
}

Also available in: Unified diff