Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / operations / strategies / DiskShapeInfo.java @ 1034

History | View | Annotate | Download (1.08 KB)

1
package com.iver.cit.gvsig.fmap.operations.strategies;
2

    
3
import java.awt.geom.Rectangle2D;
4

    
5
public class DiskShapeInfo implements ShapeInfo {
6

    
7
        /**
8
         * @see com.iver.cit.gvsig.fmap.operations.strategies.ShapeInfo#addShapeInfo(java.awt.geom.Rectangle2D, int)
9
         */
10
        public void addShapeInfo(Rectangle2D boundingBox, int type) {
11
        }
12

    
13
        /**
14
         * @see com.iver.cit.gvsig.fmap.operations.strategies.ShapeInfo#getBoundingBox(int)
15
         */
16
        public Rectangle2D getBoundingBox(int index) {
17
                return null;
18
        }
19

    
20
        /**
21
         * @see com.iver.cit.gvsig.fmap.operations.strategies.ShapeInfo#getType(int)
22
         */
23
        public int getType(int index) {
24
                return 0;
25
        }
26

    
27
        /**
28
         * @see com.iver.cit.gvsig.fmap.operations.strategies.ShapeInfo#addShapeInfo(int, java.awt.geom.Rectangle2D, int)
29
         */
30
        public void addShapeInfo(int index, Rectangle2D boundingBox, int type) throws ArrayIndexOutOfBoundsException {
31
        }
32

    
33
        /**
34
         * @see com.iver.cit.gvsig.fmap.operations.strategies.ShapeInfo#setShapeInfo(int, java.awt.geom.Rectangle2D, int)
35
         */
36
        public void setShapeInfo(int index, Rectangle2D boundingBox, int type) throws ArrayIndexOutOfBoundsException {
37
        }
38
}