Skip to content

Commit

Permalink
Merge pull request #108 from elvisisking/TEIIDDES-1545
Browse files Browse the repository at this point in the history
TEIIDDES-1545 "WSDL to Relational" importer fields for Source and View Model Definition Name enter backwards in Windows
  • Loading branch information
blafond committed Feb 15, 2013
2 parents 8ec4b46 + 7fb2521 commit b76d97a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,15 +369,19 @@ public void refreshUiFromManager() {
this.sourceModelContainerText.setText(sourceLocation.getFullPath().makeRelative().toString());
}
if( this.importManager.getSourceModelName() != null ) {
this.sourceModelFileText.setText(this.importManager.getSourceModelName());
if (!this.sourceModelFileText.getText().equals(this.importManager.getSourceModelName())) {
this.sourceModelFileText.setText(this.importManager.getSourceModelName());
}
}

IContainer viewLocation = this.importManager.getViewModelLocation();
if( viewLocation != null ) {
this.viewModelContainerText.setText(viewLocation.getFullPath().makeRelative().toString());
}
if( this.importManager.getViewModelName() != null ) {
this.viewModelFileText.setText(this.importManager.getViewModelName());
if (!this.viewModelFileText.getText().equals(this.importManager.getViewModelName())) {
this.viewModelFileText.setText(this.importManager.getViewModelName());
}
}

// // source model info is complete so go ahead and set message for user
Expand Down

0 comments on commit b76d97a

Please sign in to comment.