]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.district.imports/src/org/simantics/district/imports/CSVImportModel.java
Add participant for visualizing district finder search results
[simantics/district.git] / org.simantics.district.imports / src / org / simantics / district / imports / CSVImportModel.java
index 5041f1bbe69e2fe98356f532f1b98d0bfd626904..ffcf5ae9263b18f32a0e979e0064b51275d63ccf 100644 (file)
@@ -28,6 +28,7 @@ public class CSVImportModel {
     private int xCoordIndex = -1;
     private int yCoordIndex = -1;
     private int zCoordIndex = -1;
+    private int altElevationIndex = -1;
     
     // Edge import
     private int startXCoordIndex = -1;
@@ -72,6 +73,9 @@ public class CSVImportModel {
     private int addressIndex = -1;
     private int lengthIndex = -1;
     private int detailedGeometryIndex = -1;
+    private int peakPowerIndex = -1;
+    private int regionIndex = -1;
+    private int pipeTypeIndex = -1;
     
     // Third page
 
@@ -500,4 +504,36 @@ public class CSVImportModel {
     public int getDetailedGeometryIndex() {
         return detailedGeometryIndex;
     }
+
+    public int getAlternativeElevationIndex() {
+        return altElevationIndex;
+    }
+
+    public void setAltElevationIndex(int parseInt) {
+        this.altElevationIndex = parseInt;
+    }
+
+    public void setPeakPowerIndex(int parseInt) {
+        this.peakPowerIndex = parseInt;
+    }
+
+    public int getPeakPowerIndex() {
+        return peakPowerIndex;
+    }
+
+    public int getRegionIndex() {
+        return regionIndex;
+    }
+
+    public void setRegionIndex(int regionIndex) {
+        this.regionIndex = regionIndex;
+    }
+
+    public int getPipeTypeIndex() {
+        return pipeTypeIndex;
+    }
+
+    public void setPipeTypeIndex(int pipeTypeIndex) {
+        this.pipeTypeIndex = pipeTypeIndex;
+    }
 }