Revision 28368 trunk/applications/appgvSIG/src/com/iver/cit/gvsig/project/documents/layout/fframes/FFrameGroup.java

View differences:

FFrameGroup.java
53 53

  
54 54
import javax.print.attribute.PrintRequestAttributeSet;
55 55

  
56
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
57 56
import com.iver.andami.PluginServices;
58 57
import com.iver.andami.messages.NotificationManager;
59 58
import com.iver.cit.gvsig.fmap.core.FShape;
......
143 142
     * @param imgBase Imagen utilizada para acelerar el dibujado.
144 143
     */
145 144
    public void draw(Graphics2D g, AffineTransform at, Rectangle2D rv,
146
        BufferedImage imgBase) throws ReadDriverException {
145
        BufferedImage imgBase) {
147 146
        Rectangle2D.Double r = getBoundingBox(at);
148 147
        g.rotate(Math.toRadians(getRotation()), r.x + (r.width / 2),
149 148
            r.y + (r.height / 2));
......
303 302
     * @see com.iver.cit.gvsig.project.documents.layout.fframes.IFFrame#print(java.awt.Graphics2D,
304 303
     *      java.awt.geom.AffineTransform)
305 304
     */
306
    public void print(Graphics2D g, AffineTransform at,FShape shape, PrintRequestAttributeSet printingProperties)
307
        throws ReadDriverException {
305
    public void print(Graphics2D g, AffineTransform at,FShape shape, PrintRequestAttributeSet printingProperties) {
308 306
        Rectangle2D.Double r = getBoundingBox(at);
309 307
        g.rotate(Math.toRadians(getRotation()), r.x + (r.width / 2),
310 308
            r.y + (r.height / 2));

Also available in: Unified diff