Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extOracleSpatial / src / es / prodevelop / cit / gvsig / fmap / drivers / jdbc / oracle / ExtendedGeneralPathX.java @ 32891

History | View | Annotate | Download (436 Bytes)

1
package es.prodevelop.cit.gvsig.fmap.drivers.jdbc.oracle;
2

    
3
import com.iver.cit.gvsig.fmap.core.GeneralPathX;
4

    
5
/**
6
 * Utility class to keep info about QUAD arcs being linearized or not.
7
 * @author jldominguez
8
 *
9
 */
10
public class ExtendedGeneralPathX extends GeneralPathX {
11
        
12
        private boolean linearized = false;
13
        
14
        public boolean isLinearized() {
15
                return linearized;
16
        }
17
        
18
        public void setLinearized(boolean v) {
19
                linearized = v;
20
        }
21

    
22
}