Bug fixed in wizard for ExternalDataSourcePopulationInitializer, row number was not set

git-svn-id: http://dev.eclipse.org/svnroot/technology/org.eclipse.stem/branches/STEM_1_3_0@2723 92a21009-5b66-0410-b83a-dc787c41c6e9
diff --git a/models/populations/org.eclipse.stem.ui.populationmodels/src/org/eclipse/stem/ui/populationmodels/standard/wizards/StandardPopulationInitializerPropertyEditor.java b/models/populations/org.eclipse.stem.ui.populationmodels/src/org/eclipse/stem/ui/populationmodels/standard/wizards/StandardPopulationInitializerPropertyEditor.java
index d217463..cdd99d3 100644
--- a/models/populations/org.eclipse.stem.ui.populationmodels/src/org/eclipse/stem/ui/populationmodels/standard/wizards/StandardPopulationInitializerPropertyEditor.java
+++ b/models/populations/org.eclipse.stem.ui.populationmodels/src/org/eclipse/stem/ui/populationmodels/standard/wizards/StandardPopulationInitializerPropertyEditor.java
@@ -84,6 +84,8 @@
 					case StandardPackage.EXTERNAL_DATA_SOURCE_POPULATION_INITIALIZER__POPULATION_IDENTIFIER:
 					    ((PopulationInitializer)populationInitializer).setPopulationIdentifier(entry.getValue().getText());
 					    break;
+					case StandardPackage.EXTERNAL_DATA_SOURCE_POPULATION_INITIALIZER__ROW:
+						((ExternalDataSourcePopulationInitializer)populationInitializer).setRow(Integer.parseInt(entry.getValue().getText()));
 					default:
 						break;
 				}