Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / rendering / symbols / IPrintable.java @ 29312

History | View | Annotate | Download (371 Bytes)

1
package org.gvsig.fmap.mapcontext.rendering.symbols;
2

    
3
import java.awt.Graphics2D;
4
import java.awt.geom.AffineTransform;
5

    
6
import org.gvsig.compat.print.PrintAttributes;
7
import org.gvsig.fmap.geom.Geometry;
8

    
9
public interface IPrintable {
10
        public void print(Graphics2D g,
11
                                          AffineTransform at,
12
                                          Geometry shape,
13
                                          PrintAttributes properties);
14
}