From 3be4c55da1f69540613e72f05e1550f2f46adf48 Mon Sep 17 00:00:00 2001
From: Lee <irina.lee@etu.upmc.fr>
Date: Wed, 25 Jul 2018 13:09:20 +0200
Subject: [PATCH] add cluster name in jdialogsyscamsexecutablecodegeneration
 (syscams)

---
 .../ui/window/JDialogSysCAMSExecutableCodeGeneration.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/ui/window/JDialogSysCAMSExecutableCodeGeneration.java b/src/main/java/ui/window/JDialogSysCAMSExecutableCodeGeneration.java
index 903c9bae7b..b87a16a335 100644
--- a/src/main/java/ui/window/JDialogSysCAMSExecutableCodeGeneration.java
+++ b/src/main/java/ui/window/JDialogSysCAMSExecutableCodeGeneration.java
@@ -524,14 +524,14 @@ public class JDialogSysCAMSExecutableCodeGeneration extends javax.swing.JFrame i
 
                 		TopCellGenerator topCellGenerator = new TopCellGenerator(syscalsspec);
                 		testGo();
-                		jta.append("Generation of TopCell executable code: done\n");
+                		jta.append("Generation of TopCell \"" + syscalsspec.getCluster().getClusterName() + "\" executable code: done\n");
 
                 		try {
-                			jta.append("Saving  SysCAMS code in files\n");
+                			jta.append("Saving SysCAMS code in files\n");
                 			System.err.println("Saving SysCAMS code in files\n");
                 			pathCode = code2.getText();
 
-                			System.err.println("SYSCAMS TOPCELL saved in " + code2.getText());
+                			System.err.println("SYSCAMS TOPCELL : " + syscalsspec.getCluster().getClusterName() + "saved in " + code2.getText());
                 			topCellGenerator.saveFile(pathCode);
 
                 			jta.append("Code saved\n");
-- 
GitLab