]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.district.imports.ui/src/org/simantics/district/imports/ui/CSVImportModel.java
Add edge geometry for detailed rendering in closer zoom levels
[simantics/district.git] / org.simantics.district.imports.ui / src / org / simantics / district / imports / ui / CSVImportModel.java
index 9d5bd715c316b8ef2d6de0fb34251b8f3aee8592..93646ded2022e92c9f213ab59054d3c0a60166e2 100644 (file)
@@ -70,6 +70,8 @@ public class CSVImportModel {
     private double edgePadding = 0.0001; // default
     private int valvePositionIndx = -1;
     private int addressIndex;
+    private int lengthIndex;
+    private int detailedGeometryIndex;
     
     // Third page
 
@@ -482,4 +484,20 @@ public class CSVImportModel {
     public int getAddressIndex() {
         return addressIndex;
     }
+
+    public int getLengthIndex() {
+        return lengthIndex;
+    }
+    
+    public void setLengthIndex(int lengthIndex) {
+        this.lengthIndex = lengthIndex;
+    }
+
+    public void detailedGeometryIndex(int detailedGeometryIndex) {
+        this.detailedGeometryIndex = detailedGeometryIndex;
+    }
+    
+    public int getDetailedGeometryIndex() {
+        return detailedGeometryIndex;
+    }
 }