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

View differences:

MultiLayerFillSymbol.java
97 97

  
98 98
import javax.print.attribute.PrintRequestAttributeSet;
99 99

  
100
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
101 100
import com.iver.cit.gvsig.fmap.MapContext;
102 101
import com.iver.cit.gvsig.fmap.ViewPort;
103 102
import com.iver.cit.gvsig.fmap.core.FShape;
......
165 164
	}
166 165

  
167 166
	public void drawInsideRectangle(Graphics2D g,
168
			AffineTransform scaleInstance, Rectangle r) throws SymbolDrawingException {
167
			AffineTransform scaleInstance, Rectangle r, PrintRequestAttributeSet properties) throws SymbolDrawingException {
169 168
		for (int i = 0; i < layers.length; i++) {
170
			layers[i].drawInsideRectangle(g, scaleInstance, r);
169
			layers[i].drawInsideRectangle(g, scaleInstance, r, properties);
171 170
		}
172 171
	}
173 172

  
......
251 250
		}
252 251
	}
253 252

  
254
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties)
255
			throws ReadDriverException {
253
	public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
256 254
		for (int i = 0; i < layers.length; i++) {
257 255
			layers[i].print(g, at, shape, properties);
258 256
		}

Also available in: Unified diff