Statistics
| Revision:

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

History | View | Annotate | Download (321 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
9
public interface IPrintable {
10 10897 jaume
        public void print(Graphics2D g,
11
                                          AffineTransform at,
12
                                          FShape shape,
13 28367 vcaballero
                                          PrintRequestAttributeSet properties);
14 9593 caballero
}