Update of /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/rsa/ui/internal/wizards
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27482/Plugin/com/ibm/ecute/rsa/ui/internal/wizards
Modified Files:
ExportCIMMOFWizardPage.java
Log Message:
2.1 beta 2: full flavors support
- flavors import
- flavors modification
- flavors check and repair
- flavors export
Index: ExportCIMMOFWizardPage.java
===================================================================
RCS file: /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/rsa/ui/internal/wizards/ExportCIMMOFWizardPage.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- ExportCIMMOFWizardPage.java 10 Aug 2005 17:26:00 -0000 1.13
+++ ExportCIMMOFWizardPage.java 11 Aug 2005 10:55:48 -0000 1.14
@@ -613,8 +613,8 @@
writeConfiguration(mofOutpuConfig);
CheckAndRepair checker = new CheckAndRepair(getModel());
- ProgressLogDialog frame = new ProgressLogDialog(shell);
- if(checker.checkAndRepairAll(frame, true)){
+ //ProgressLogDialog frame = new ProgressLogDialog(shell);
+ if(checker.checkAndRepairAll(progressLog, true)){
progressLog.addLine2Log("Check and Repair passed successfully");
progressLog.addLine2Log("");
@@ -629,8 +629,8 @@
}
return true;
} else {
- progressLog.close();
- frame.addLine2Log("--> The model contains association end errors so the export has been aborted");
+ //progressLog.close();
+ progressLog.addLine2Log("--> The model contains association end errors so the export has been aborted");
return true;
}
}
|