Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / IPrintable.java @ 11877

History | View | Annotate | Download (414 Bytes)

1 9593 caballero
package com.iver.cit.gvsig.fmap.core;
2
3
import java.awt.Graphics2D;
4
import java.awt.geom.AffineTransform;
5
6
import javax.print.attribute.PrintRequestAttributeSet;
7
8 10627 caballero
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
9 9593 caballero
10
public interface IPrintable {
11 10897 jaume
        public void print(Graphics2D g,
12
                                          AffineTransform at,
13
                                          FShape shape,
14
                                          PrintRequestAttributeSet properties)
15
        throws ReadDriverException;
16 9593 caballero
}