diff --git a/P4a/Common/defaultpackage/Structure.java b/P4a/Common/defaultpackage/Structure.java
index a5883b391cb0b503e957ab5dfdc6f931e546b8bf..1b1179ddcf8b9a4745488beb94a438deb7833e6d 100644
--- a/P4a/Common/defaultpackage/Structure.java
+++ b/P4a/Common/defaultpackage/Structure.java
@@ -6,7 +6,7 @@ public interface Structure
 	boolean wantArray = false;
 	boolean wantLinked = false;
 	boolean wantMaillon = false;
-	
+
 	public static void GenerateTab(boolean wantTab, boolean wantArray, boolean wantLinked, boolean wantMaillon, int nbValue) 
 	{
 		if (wantTab)
@@ -26,4 +26,13 @@ public interface Structure
 	public void Add(int value);
 	public void Remove(int index) throws Exception;
 	public int Select(int index) throws Exception;
+
+
+
+	public static void main(String[] args) {
+        // TODO Auto-generated method stub
+
+        GenerateTab(true, false, true, true, 50000);
+
+    }
 }