Revision 28367 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/symbols/MultiLayerLineSymbol.java

View differences:

MultiLayerLineSymbol.java
112 112

  
113 113
import javax.print.attribute.PrintRequestAttributeSet;
114 114

  
115
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
116 115
import com.iver.cit.gvsig.fmap.MapContext;
117 116
import com.iver.cit.gvsig.fmap.ViewPort;
118 117
import com.iver.cit.gvsig.fmap.core.FShape;
......
196 195
		}
197 196
	}
198 197

  
199
	public void drawInsideRectangle(Graphics2D g, AffineTransform scaleInstance, Rectangle r) throws SymbolDrawingException {
198
	public void drawInsideRectangle(Graphics2D g, AffineTransform scaleInstance, Rectangle r, PrintRequestAttributeSet properties) throws SymbolDrawingException {
200 199
		for (int i = 0; i < layers.length; i++) {
201
			layers[i].drawInsideRectangle(g, scaleInstance, r);
200
			layers[i].drawInsideRectangle(g, scaleInstance, r, properties);
202 201
		}
203 202
	}
204 203

  
......
266 265
		}
267 266
	}
268 267

  
269
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties)
270
			throws ReadDriverException {
268
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
271 269
		for (int i = 0; i < layers.length; i++) {
272 270
			layers[i].print(g, at, shape, properties);
273 271
		}

Also available in: Unified diff