Revision 29244

View differences:

trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/DotDensityFillSymbol.java
304 304

  
305 305
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
306 306
		this.properties=properties;
307
        draw(g, at, null, null);
307
        draw(g, at, shape, null);
308 308
        this.properties=null;
309 309

  
310 310
	}
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/LineFillSymbol.java
277 277
	public void print(Graphics2D g, AffineTransform at, FShape shape,
278 278
			PrintRequestAttributeSet properties) {
279 279
		this.properties=properties;
280
        draw(g, at, null, null);
280
        draw(g, at, shape, null);
281 281
        this.properties=null;
282 282
	}
283 283

  
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/PictureFillSymbol.java
311 311
	public void print(Graphics2D g, AffineTransform at, FShape shape,
312 312
			PrintRequestAttributeSet properties) {
313 313
		this.properties=properties;
314
        draw(g, at, null, null);
314
        draw(g, at, shape, null);
315 315
        this.properties=null;
316 316
	}
317 317
	/**
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/PictureLineSymbol.java
320 320
	public void print(Graphics2D g, AffineTransform at, FShape shape,
321 321
			PrintRequestAttributeSet properties) {
322 322
		this.properties=properties;
323
        draw(g, at, null, null);
323
        draw(g, at, shape, null);
324 324
        this.properties=null;
325 325

  
326 326
	}
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/GradientFillSymbol.java
279 279

  
280 280
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
281 281
		this.properties=properties;
282
        draw(g, at, null, null);
282
        draw(g, at, shape, null);
283 283
        this.properties=null;
284 284
	}
285 285

  
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/MarkerFillSymbol.java
466 466

  
467 467
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
468 468
		this.properties=properties;
469
        draw(g, at, null, null);
469
        draw(g, at, shape, null);
470 470
        this.properties=null;
471 471

  
472 472
	}
trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/symbols/MarkerLineSymbol.java
184 184
	public void print(Graphics2D g, AffineTransform at, FShape shape,
185 185
			PrintRequestAttributeSet properties) {
186 186
		this.properties=properties;
187
        draw(g, at, null, null);
187
        draw(g, at, shape, null);
188 188
        this.properties=null;
189 189
	}
190 190
	/**

Also available in: Unified diff