From 7e76f80d06c28e7b565f74bf0434ac551d86c125 Mon Sep 17 00:00:00 2001
From: Daniela Genius <genius@debussy.soc.lip6.fr>
Date: Mon, 24 Oct 2016 14:55:37 +0200
Subject: [PATCH] corrige bug vgmn

---
 src/ui/window/JDialogADDVgmnNode.java | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/ui/window/JDialogADDVgmnNode.java b/src/ui/window/JDialogADDVgmnNode.java
index 0f176e646f..5adfbd23b8 100755
--- a/src/ui/window/JDialogADDVgmnNode.java
+++ b/src/ui/window/JDialogADDVgmnNode.java
@@ -223,13 +223,16 @@ public class JDialogADDVgmnNode extends javax.swing.JDialog implements ActionLis
     }
     
     public String getNbOfAttachedInitiators() {
-        return nbOfAttachedInitiators.getText();
+        //return nbOfAttachedInitiators.getText();
+	return "0";
     }
-	
-	public String getNbOfAttachedTargets(){
-		  return nbOfAttachedTargets.getText();
-	  }
-	  
+       
+
+    public String getNbOfAttachedTargets(){
+	    //return nbOfAttachedTargets.getText();
+	return "0";
+    }
+    
 	public String getFifoDepth(){
 		  return fifoDepth.getText();
 	  }
-- 
GitLab