diff --git a/projetAgile/Makefile b/projetAgile/Makefile
index a7cdb8b..6c29bbe 100644
--- a/projetAgile/Makefile
+++ b/projetAgile/Makefile
@@ -3,26 +3,24 @@ JAVAC_OPT = -implicit:none \
 PACKAGE = fr.iutfbleau.projetAgile
 PACKAGE_PATH = fr/iutfbleau/projetAgile
 
-#------- Variables ------
+#------- Variables Puissance 4 ------
 
-View = 	build/$(PACKAGE_PATH)/View/Pion.class \
-		build/$(PACKAGE_PATH)/View/Grille.class \
-		build/$(PACKAGE_PATH)/View/Puissance4Panel.class \
-		build/$(PACKAGE_PATH)/View/BoutonsMenu.class \
-		build/$(PACKAGE_PATH)/View/Menu.class
+View = 	build/$(PACKAGE_PATH)/Puissance4/View/Pion.class \
+		build/$(PACKAGE_PATH)/Puissance4/View/Grille.class \
+		build/$(PACKAGE_PATH)/Puissance4/View/Puissance4Panel.class \
 
-Utils = build/$(PACKAGE_PATH)/Utils/Constants.class \
-		build/$(PACKAGE_PATH)/Utils/GameStatus.class
+Utils = build/$(PACKAGE_PATH)/Puissance4/Utils/Constants.class \
+		build/$(PACKAGE_PATH)/Puissance4/Utils/GameStatus.class
 
-Events = build/$(PACKAGE_PATH)/Event/GridChangedListener.class \
-		build/$(PACKAGE_PATH)/Event/GridEvent.class \
-		build/$(PACKAGE_PATH)/Event/StatusEvent.class
+Events = build/$(PACKAGE_PATH)/Puissance4/Event/GridChangedListener.class \
+		build/$(PACKAGE_PATH)/Puissance4/Event/GridEvent.class \
+		build/$(PACKAGE_PATH)/Puissance4/Event/StatusEvent.class
 
-Model = build/$(PACKAGE_PATH)/Model/GrilleModel.class 
+Model = build/$(PACKAGE_PATH)/Puissance4/Model/GrilleModel.class 
 
-Controller = build/$(PACKAGE_PATH)/Controller/GrilleMouseListener.class \
-			build/$(PACKAGE_PATH)/Controller/ModelEventListener.class \
-			build/$(PACKAGE_PATH)/Controller/ResetGame.class
+Controller = build/$(PACKAGE_PATH)/Puissance4/Controller/GrilleMouseListener.class \
+			build/$(PACKAGE_PATH)/Puissance4/Controller/ModelEventListener.class \
+			build/$(PACKAGE_PATH)/Puissance4/Controller/ResetGame.class
 
 #BUT PAR DEFAUT 
 ArgileGames.jar : build/$(PACKAGE_PATH)/Main.class 
@@ -30,94 +28,94 @@ ArgileGames.jar : build/$(PACKAGE_PATH)/Main.class
 
 #------- Events ------
 
-build/$(PACKAGE_PATH)/Event/GridEvent.class : src/$(PACKAGE_PATH)/Event/GridEvent.java 
+build/$(PACKAGE_PATH)/Puissance4/Event/GridEvent.class : src/$(PACKAGE_PATH)/Puissance4/Event/GridEvent.java 
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Event/StatusEvent.class : src/$(PACKAGE_PATH)/Event/StatusEvent.java \
-												build/$(PACKAGE_PATH)/Utils/GameStatus.class
+build/$(PACKAGE_PATH)/Puissance4/Event/StatusEvent.class : src/$(PACKAGE_PATH)/Puissance4/Event/StatusEvent.java \
+												build/$(PACKAGE_PATH)/Puissance4/Utils/GameStatus.class
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Event/GridChangedListener.class : src/$(PACKAGE_PATH)/Event/GridChangedListener.java \
-														build/$(PACKAGE_PATH)/Event/GridEvent.class 
+build/$(PACKAGE_PATH)/Puissance4/Event/GridChangedListener.class : src/$(PACKAGE_PATH)/Puissance4/Event/GridChangedListener.java \
+														build/$(PACKAGE_PATH)/Puissance4/Event/GridEvent.class 
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Event/AbstractGridInitiater.class : src/$(PACKAGE_PATH)/Event/AbstractGridInitiater.java \
+build/$(PACKAGE_PATH)/Puissance4/Event/AbstractGridInitiater.class : src/$(PACKAGE_PATH)/Puissance4/Event/AbstractGridInitiater.java \
 														$(Events)
 	javac $(JAVAC_OPT) $<
 
 #------- Controleur ------
 
-build/$(PACKAGE_PATH)/Controller/ResetGame.class : src/$(PACKAGE_PATH)/Controller/ResetGame.java 		
+build/$(PACKAGE_PATH)/Puissance4/Controller/ResetGame.class : src/$(PACKAGE_PATH)/Puissance4/Controller/ResetGame.java 		
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Controller/GrilleMouseListener.class : src/$(PACKAGE_PATH)/Controller/GrilleMouseListener.java
+build/$(PACKAGE_PATH)/Puissance4/Controller/GrilleMouseListener.class : src/$(PACKAGE_PATH)/Puissance4/Controller/GrilleMouseListener.java
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Controller/ModelEventListener.class : src/$(PACKAGE_PATH)/Controller/ModelEventListener.java \
-															build/$(PACKAGE_PATH)/Event/GridChangedListener.class \
-															build/$(PACKAGE_PATH)/View/Grille.class \
+build/$(PACKAGE_PATH)/Puissance4/Controller/ModelEventListener.class : src/$(PACKAGE_PATH)/Puissance4/Controller/ModelEventListener.java \
+															build/$(PACKAGE_PATH)/Puissance4/Event/GridChangedListener.class \
+															build/$(PACKAGE_PATH)/Puissance4/View/Grille.class \
 															$(Event)
 															
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Controller/ObservateurMenuSouris.class : src/$(PACKAGE_PATH)/Controller/ObservateurMenuSouris.java \
-															build/$(PACKAGE_PATH)/View/BoutonsMenu.class
+build/$(PACKAGE_PATH)/Menu/Controller/ObservateurMenuSouris.class : src/$(PACKAGE_PATH)/Menu/Controller/ObservateurMenuSouris.java \
+															build/$(PACKAGE_PATH)/Menu/View/BoutonsMenu.class
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Controller/Puissance4Controller.class : src/$(PACKAGE_PATH)/Controller/Puissance4Controller.java \
-													build/$(PACKAGE_PATH)/Model/GrilleModel.class \
-													build/$(PACKAGE_PATH)/View/Grille.class \
-													build/$(PACKAGE_PATH)/Utils/GameStatus.class \
-													build/$(PACKAGE_PATH)/View/Puissance4Panel.class \
+build/$(PACKAGE_PATH)/Puissance4/Controller/Puissance4Controller.class : src/$(PACKAGE_PATH)/Puissance4/Controller/Puissance4Controller.java \
+													build/$(PACKAGE_PATH)/Puissance4/Model/GrilleModel.class \
+													build/$(PACKAGE_PATH)/Puissance4/View/Grille.class \
+													build/$(PACKAGE_PATH)/Puissance4/Utils/GameStatus.class \
+													build/$(PACKAGE_PATH)/Puissance4/View/Puissance4Panel.class \
 													$(Controller)
 	javac $(JAVAC_OPT) $<	
 
 #------- Modele ------
 
-build/$(PACKAGE_PATH)/Model/GrilleModel.class : src/$(PACKAGE_PATH)/Model/GrilleModel.java \
-												build/$(PACKAGE_PATH)/Event/AbstractGridInitiater.class \
+build/$(PACKAGE_PATH)/Puissance4/Model/GrilleModel.class : src/$(PACKAGE_PATH)/Puissance4/Model/GrilleModel.java \
+												build/$(PACKAGE_PATH)/Puissance4/Event/AbstractGridInitiater.class \
 												$(Utils)
 	javac $(JAVAC_OPT) $< 
 
 #------- Utils ------
 
-build/$(PACKAGE_PATH)/Utils/Constants.class : src/$(PACKAGE_PATH)/Utils/Constants.java
+build/$(PACKAGE_PATH)/Puissance4/Utils/Constants.class : src/$(PACKAGE_PATH)/Puissance4/Utils/Constants.java
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/Utils/GameStatus.class : src/$(PACKAGE_PATH)/Utils/GameStatus.java
+build/$(PACKAGE_PATH)/Puissance4/Utils/GameStatus.class : src/$(PACKAGE_PATH)/Puissance4/Utils/GameStatus.java
 	javac $(JAVAC_OPT) $<
 
 #------- Vue ------
 
-build/$(PACKAGE_PATH)/View/Pion.class : src/$(PACKAGE_PATH)/View/Pion.java \
-										build/$(PACKAGE_PATH)/Utils/Constants.class
+build/$(PACKAGE_PATH)/Puissance4/View/Pion.class : src/$(PACKAGE_PATH)/Puissance4/View/Pion.java \
+										build/$(PACKAGE_PATH)/Puissance4/Utils/Constants.class
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/View/Grille.class : src/$(PACKAGE_PATH)/View/Grille.java \
-											build/$(PACKAGE_PATH)/View/Pion.class \
-											build/$(PACKAGE_PATH)/Utils/Constants.class
+build/$(PACKAGE_PATH)/Puissance4/View/Grille.class : src/$(PACKAGE_PATH)/Puissance4/View/Grille.java \
+											build/$(PACKAGE_PATH)/Puissance4/View/Pion.class \
+											build/$(PACKAGE_PATH)/Puissance4/Utils/Constants.class
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/View/Puissance4Panel.class :  src/$(PACKAGE_PATH)/View/Puissance4Panel.java \
-												build/$(PACKAGE_PATH)/View/Pion.class \
-												build/$(PACKAGE_PATH)/View/Grille.class \
-												build/$(PACKAGE_PATH)/Utils/Constants.class
+build/$(PACKAGE_PATH)/Puissance4/View/Puissance4Panel.class :  src/$(PACKAGE_PATH)/Puissance4/View/Puissance4Panel.java \
+												build/$(PACKAGE_PATH)/Puissance4/View/Pion.class \
+												build/$(PACKAGE_PATH)/Puissance4/View/Grille.class \
+												build/$(PACKAGE_PATH)/Puissance4/Utils/Constants.class
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/View/BoutonsMenu.class : src/$(PACKAGE_PATH)/View/BoutonsMenu.java
+build/$(PACKAGE_PATH)/Menu/View/BoutonsMenu.class : src/$(PACKAGE_PATH)/Menu/View/BoutonsMenu.java
 	javac $(JAVAC_OPT) $<
 
-build/$(PACKAGE_PATH)/View/Menu.class : src/$(PACKAGE_PATH)/View/Menu.java \
-										build/$(PACKAGE_PATH)/Controller/ObservateurMenuSouris.class \
-										build/$(PACKAGE_PATH)/View/BoutonsMenu.class
+build/$(PACKAGE_PATH)/Menu/View/Menu.class : src/$(PACKAGE_PATH)/Menu/View/Menu.java \
+										build/$(PACKAGE_PATH)/Menu/Controller/ObservateurMenuSouris.class \
+										build/$(PACKAGE_PATH)/Menu/View/BoutonsMenu.class
 	javac $(JAVAC_OPT) $<
 									
 
 build/$(PACKAGE_PATH)/Main.class : src/$(PACKAGE_PATH)/Main.java \
-								build/$(PACKAGE_PATH)/View/Menu.class \
-								build/$(PACKAGE_PATH)/Controller/Puissance4Controller.class \
-								build/$(PACKAGE_PATH)/View/Grille.class \
-								build/$(PACKAGE_PATH)/Model/GrilleModel.class
+								build/$(PACKAGE_PATH)/Menu/View/Menu.class \
+								build/$(PACKAGE_PATH)/Puissance4/Controller/Puissance4Controller.class \
+								build/$(PACKAGE_PATH)/Puissance4/View/Grille.class \
+								build/$(PACKAGE_PATH)/Puissance4/Model/GrilleModel.class
 	javac $(JAVAC_OPT) $<	
 
 
@@ -125,7 +123,13 @@ build/$(PACKAGE_PATH)/Main.class : src/$(PACKAGE_PATH)/Main.java \
 .PHONY: clear doc run
 
 doc :
-	javadoc -d doc src/$(PACKAGE_PATH)/View/*.java src/$(PACKAGE_PATH)/Controller/*.java src/$(PACKAGE_PATH)/Utils/*.java src/$(PACKAGE_PATH)/Model/*.java src/$(PACKAGE_PATH)/Event/*.java
+	javadoc -verbose -d doc src/$(PACKAGE_PATH)/Puissance4/View/*.java \
+					src/$(PACKAGE_PATH)/Menu/View/*.java \
+					src/$(PACKAGE_PATH)/Puissance4/Controller/*.java \
+					src/$(PACKAGE_PATH)/Menu/Controller/*.java \
+					src/$(PACKAGE_PATH)/Puissance4/Utils/*.java \
+					src/$(PACKAGE_PATH)/Puissance4/Model/*.java \
+					src/$(PACKAGE_PATH)/Puissance4/Event/*.java
 	
 run: ArgileGames.jar
 	java -jar ArgileGames.jar
diff --git a/projetAgile/doc/allclasses-frame.html b/projetAgile/doc/allclasses-frame.html
deleted file mode 100644
index 9f12501..0000000
--- a/projetAgile/doc/allclasses-frame.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>All Classes</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<h1 class="bar">All&nbsp;Classes</h1>
-<div class="indexContainer">
-<ul>
-<li><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">AbstractGridInitiater</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">BoutonsMenu</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils" target="classFrame">Constants</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils" target="classFrame">GameStatus</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event" target="classFrame"><span class="interfaceName">GridChangedListener</span></a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">GridEvent</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Grille</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model" target="classFrame">GrilleModel</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">GrilleMouseListener</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Menu</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ModelEventListener</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ObservateurMenuSouris</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Pion</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">PlayerEvent</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">Puissance4Controller</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Puissance4Panel</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ResetGame</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/allclasses-noframe.html b/projetAgile/doc/allclasses-noframe.html
deleted file mode 100644
index c467325..0000000
--- a/projetAgile/doc/allclasses-noframe.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>All Classes</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<h1 class="bar">All&nbsp;Classes</h1>
-<div class="indexContainer">
-<ul>
-<li><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="interfaceName">GridChangedListener</span></a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/constant-values.html b/projetAgile/doc/constant-values.html
deleted file mode 100644
index 1f7c2a6..0000000
--- a/projetAgile/doc/constant-values.html
+++ /dev/null
@@ -1,172 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Constant Field Values</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
-<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
-<h2 title="Contents">Contents</h2>
-<ul>
-<li><a href="#fr.iutfbleau">fr.iutfbleau.*</a></li>
-</ul>
-</div>
-<div class="constantValuesContainer"><a name="fr.iutfbleau">
-<!--   -->
-</a>
-<h2 title="fr.iutfbleau">fr.iutfbleau.*</h2>
-<ul class="blockList">
-<li class="blockList">
-<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
-<caption><span>fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th scope="col">Constant Field</th>
-<th class="colLast" scope="col">Value</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a name="fr.iutfbleau.projetAgile.Utils.Constants.DRAW_POSITION">
-<!--   -->
-</a><code>public&nbsp;static&nbsp;final&nbsp;boolean</code></td>
-<td><code><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#DRAW_POSITION">DRAW_POSITION</a></code></td>
-<td class="colLast"><code>true</code></td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a name="fr.iutfbleau.projetAgile.Utils.Constants.EMPTY_PLAYER">
-<!--   -->
-</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
-<td><code><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#EMPTY_PLAYER">EMPTY_PLAYER</a></code></td>
-<td class="colLast"><code>0</code></td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a name="fr.iutfbleau.projetAgile.Utils.Constants.PLAYER_ONE">
-<!--   -->
-</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
-<td><code><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_ONE">PLAYER_ONE</a></code></td>
-<td class="colLast"><code>1</code></td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a name="fr.iutfbleau.projetAgile.Utils.Constants.PLAYER_TWO">
-<!--   -->
-</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
-<td><code><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_TWO">PLAYER_TWO</a></code></td>
-<td class="colLast"><code>2</code></td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
-<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/deprecated-list.html b/projetAgile/doc/deprecated-list.html
deleted file mode 100644
index 199de68..0000000
--- a/projetAgile/doc/deprecated-list.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Deprecated List</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li class="navBarCell1Rev">Deprecated</li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
-<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Deprecated API" class="title">Deprecated API</h1>
-<h2 title="Contents">Contents</h2>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li class="navBarCell1Rev">Deprecated</li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
-<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html
deleted file mode 100644
index 4c696ca..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html
+++ /dev/null
@@ -1,348 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>GrilleMouseListener</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GrilleMouseListener";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" target="_top">Frames</a></li>
-<li><a href="GrilleMouseListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Controller</div>
-<h2 title="Class GrilleMouseListener" class="title">Class GrilleMouseListener</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.event.MouseAdapter</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.event.MouseInputAdapter</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Controller.GrilleMouseListener</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.event.MouseListener, java.awt.event.MouseMotionListener, java.awt.event.MouseWheelListener, java.util.EventListener, javax.swing.event.MouseInputListener</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">GrilleMouseListener</span>
-extends javax.swing.event.MouseInputAdapter</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#GrilleMouseListener-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">GrilleMouseListener</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a>&nbsp;p)</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mouseExited-java.awt.event.MouseEvent-">mouseExited</a></span>(java.awt.event.MouseEvent&nbsp;e)</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mouseMoved-java.awt.event.MouseEvent-">mouseMoved</a></span>(java.awt.event.MouseEvent&nbsp;e)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mousePressed-java.awt.event.MouseEvent-">mousePressed</a></span>(java.awt.event.MouseEvent&nbsp;e)</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.event.MouseAdapter">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.event.MouseAdapter</h3>
-<code>mouseClicked, mouseDragged, mouseEntered, mouseReleased, mouseWheelMoved</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.event.MouseListener">
-<!--   -->
-</a>
-<h3>Methods inherited from interface&nbsp;java.awt.event.MouseListener</h3>
-<code>mouseClicked, mouseEntered, mouseReleased</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.event.MouseMotionListener">
-<!--   -->
-</a>
-<h3>Methods inherited from interface&nbsp;java.awt.event.MouseMotionListener</h3>
-<code>mouseDragged</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="GrilleMouseListener-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>GrilleMouseListener</h4>
-<pre>public&nbsp;GrilleMouseListener(<a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a>&nbsp;p)</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="mouseMoved-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mouseMoved</h4>
-<pre>public&nbsp;void&nbsp;mouseMoved(java.awt.event.MouseEvent&nbsp;e)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseMoved</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseMotionListener</code></dd>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>mouseMoved</code>&nbsp;in class&nbsp;<code>java.awt.event.MouseAdapter</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mousePressed-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mousePressed</h4>
-<pre>public&nbsp;void&nbsp;mousePressed(java.awt.event.MouseEvent&nbsp;e)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mousePressed</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>mousePressed</code>&nbsp;in class&nbsp;<code>java.awt.event.MouseAdapter</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mouseExited-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>mouseExited</h4>
-<pre>public&nbsp;void&nbsp;mouseExited(java.awt.event.MouseEvent&nbsp;e)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseExited</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>mouseExited</code>&nbsp;in class&nbsp;<code>java.awt.event.MouseAdapter</code></dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" target="_top">Frames</a></li>
-<li><a href="GrilleMouseListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ModelEventListener.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ModelEventListener.html
deleted file mode 100644
index 712e028..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ModelEventListener.html
+++ /dev/null
@@ -1,307 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>ModelEventListener</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ModelEventListener";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" target="_top">Frames</a></li>
-<li><a href="ModelEventListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Controller</div>
-<h2 title="Class ModelEventListener" class="title">Class ModelEventListener</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Controller.ModelEventListener</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>, java.util.EventListener</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">ModelEventListener</span>
-extends java.lang.Object
-implements <a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#ModelEventListener-fr.iutfbleau.projetAgile.View.Puissance4Panel-">ModelEventListener</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a>&nbsp;p)</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">gridChanged</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a>&nbsp;e)</code>
-<div class="block">Méthode invoqué lorsque la grille est modifié</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">playerChanged</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a>&nbsp;e)</code>
-<div class="block">Méthode invoqué lorsque le tour du joueur est modifié</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="ModelEventListener-fr.iutfbleau.projetAgile.View.Puissance4Panel-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>ModelEventListener</h4>
-<pre>public&nbsp;ModelEventListener(<a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a>&nbsp;p)</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>gridChanged</h4>
-<pre>public&nbsp;void&nbsp;gridChanged(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a>&nbsp;e)</pre>
-<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">GridChangedListener</a></code></span></div>
-<div class="block">Méthode invoqué lorsque la grille est modifié</div>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">gridChanged</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></code></dd>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>e</code> - Evenement contenant la colonne, ligne et joueur du pion placé dans la grille</dd>
-</dl>
-</li>
-</ul>
-<a name="playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>playerChanged</h4>
-<pre>public&nbsp;void&nbsp;playerChanged(<a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a>&nbsp;e)</pre>
-<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">GridChangedListener</a></code></span></div>
-<div class="block">Méthode invoqué lorsque le tour du joueur est modifié</div>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">playerChanged</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></code></dd>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>e</code> - Evenement contenant l'ancien joueur et le nouveau</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" target="_top">Frames</a></li>
-<li><a href="ModelEventListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html
deleted file mode 100644
index e9efe30..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html
+++ /dev/null
@@ -1,350 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>ObservateurMenuSouris</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ObservateurMenuSouris";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" target="_top">Frames</a></li>
-<li><a href="ObservateurMenuSouris.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Controller</div>
-<h2 title="Class ObservateurMenuSouris" class="title">Class ObservateurMenuSouris</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Controller.ObservateurMenuSouris</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.event.MouseListener, java.util.EventListener</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">ObservateurMenuSouris</span>
-extends java.lang.Object
-implements java.awt.event.MouseListener</pre>
-<div class="block">Observateur des Boutons du Menu</div>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#ObservateurMenuSouris--">ObservateurMenuSouris</a></span>()</code>
-<div class="block">Constructeur</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseClicked-java.awt.event.MouseEvent-">mouseClicked</a></span>(java.awt.event.MouseEvent&nbsp;evenement)</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseEntered-java.awt.event.MouseEvent-">mouseEntered</a></span>(java.awt.event.MouseEvent&nbsp;evenement)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseExited-java.awt.event.MouseEvent-">mouseExited</a></span>(java.awt.event.MouseEvent&nbsp;evenement)</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mousePressed-java.awt.event.MouseEvent-">mousePressed</a></span>(java.awt.event.MouseEvent&nbsp;evenement)</code>&nbsp;</td>
-</tr>
-<tr id="i4" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseReleased-java.awt.event.MouseEvent-">mouseReleased</a></span>(java.awt.event.MouseEvent&nbsp;evenement)</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="ObservateurMenuSouris--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>ObservateurMenuSouris</h4>
-<pre>public&nbsp;ObservateurMenuSouris()</pre>
-<div class="block">Constructeur</div>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="mouseClicked-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mouseClicked</h4>
-<pre>public&nbsp;void&nbsp;mouseClicked(java.awt.event.MouseEvent&nbsp;evenement)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseClicked</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mouseEntered-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mouseEntered</h4>
-<pre>public&nbsp;void&nbsp;mouseEntered(java.awt.event.MouseEvent&nbsp;evenement)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseEntered</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mouseExited-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mouseExited</h4>
-<pre>public&nbsp;void&nbsp;mouseExited(java.awt.event.MouseEvent&nbsp;evenement)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseExited</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mousePressed-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>mousePressed</h4>
-<pre>public&nbsp;void&nbsp;mousePressed(java.awt.event.MouseEvent&nbsp;evenement)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mousePressed</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-</dl>
-</li>
-</ul>
-<a name="mouseReleased-java.awt.event.MouseEvent-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>mouseReleased</h4>
-<pre>public&nbsp;void&nbsp;mouseReleased(java.awt.event.MouseEvent&nbsp;evenement)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>mouseReleased</code>&nbsp;in interface&nbsp;<code>java.awt.event.MouseListener</code></dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" target="_top">Frames</a></li>
-<li><a href="ObservateurMenuSouris.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html
deleted file mode 100644
index f6843e1..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html
+++ /dev/null
@@ -1,318 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Puissance4Controller</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Puissance4Controller";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" target="_top">Frames</a></li>
-<li><a href="Puissance4Controller.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Controller</div>
-<h2 title="Class Puissance4Controller" class="title">Class Puissance4Controller</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Controller.Puissance4Controller</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">Puissance4Controller</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#Puissance4Controller-fr.iutfbleau.projetAgile.View.Grille-fr.iutfbleau.projetAgile.Model.GrilleModel-">Puissance4Controller</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a>&nbsp;grille,
-                    <a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a>&nbsp;modele)</code>
-<div class="block">Controleur du jeu, il initialise la vue, les listeners, etc..</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>javax.swing.JPanel</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#getPanel--">getPanel</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#hoverGrille-int-">hoverGrille</a></span>(int&nbsp;x)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#reset--">reset</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#verifyColumn-int-">verifyColumn</a></span>(int&nbsp;x)</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Puissance4Controller-fr.iutfbleau.projetAgile.View.Grille-fr.iutfbleau.projetAgile.Model.GrilleModel-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Puissance4Controller</h4>
-<pre>public&nbsp;Puissance4Controller(<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a>&nbsp;grille,
-                            <a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a>&nbsp;modele)</pre>
-<div class="block">Controleur du jeu, il initialise la vue, les listeners, etc..</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>grille</code> - La grille</dd>
-<dd><code>modele</code> - Le modèle</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="reset--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>reset</h4>
-<pre>public&nbsp;void&nbsp;reset()</pre>
-</li>
-</ul>
-<a name="verifyColumn-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>verifyColumn</h4>
-<pre>public&nbsp;void&nbsp;verifyColumn(int&nbsp;x)</pre>
-</li>
-</ul>
-<a name="hoverGrille-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>hoverGrille</h4>
-<pre>public&nbsp;void&nbsp;hoverGrille(int&nbsp;x)</pre>
-</li>
-</ul>
-<a name="getPanel--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>getPanel</h4>
-<pre>public&nbsp;javax.swing.JPanel&nbsp;getPanel()</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" target="_top">Frames</a></li>
-<li><a href="Puissance4Controller.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ResetGame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ResetGame.html
deleted file mode 100644
index fa7a716..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/ResetGame.html
+++ /dev/null
@@ -1,278 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>ResetGame</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResetGame";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ResetGame.html" target="_top">Frames</a></li>
-<li><a href="ResetGame.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Controller</div>
-<h2 title="Class ResetGame" class="title">Class ResetGame</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Controller.ResetGame</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.event.ActionListener, java.util.EventListener</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">ResetGame</span>
-extends java.lang.Object
-implements java.awt.event.ActionListener</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html#ResetGame-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">ResetGame</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a>&nbsp;p)</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed</a></span>(java.awt.event.ActionEvent&nbsp;e)</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="ResetGame-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>ResetGame</h4>
-<pre>public&nbsp;ResetGame(<a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a>&nbsp;p)</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="actionPerformed-java.awt.event.ActionEvent-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>actionPerformed</h4>
-<pre>public&nbsp;void&nbsp;actionPerformed(java.awt.event.ActionEvent&nbsp;e)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>actionPerformed</code>&nbsp;in interface&nbsp;<code>java.awt.event.ActionListener</code></dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/ResetGame.html" target="_top">Frames</a></li>
-<li><a href="ResetGame.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-frame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-frame.html
deleted file mode 100644
index 30680ec..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Controller</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<h1 class="bar"><a href="../../../../fr/iutfbleau/projetAgile/Controller/package-summary.html" target="classFrame">fr.iutfbleau.projetAgile.Controller</a></h1>
-<div class="indexContainer">
-<h2 title="Classes">Classes</h2>
-<ul title="Classes">
-<li><a href="GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">GrilleMouseListener</a></li>
-<li><a href="ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ModelEventListener</a></li>
-<li><a href="ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ObservateurMenuSouris</a></li>
-<li><a href="Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">Puissance4Controller</a></li>
-<li><a href="ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller" target="classFrame">ResetGame</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-summary.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-summary.html
deleted file mode 100644
index 507e1a5..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-summary.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Controller</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Controller";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Package</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Package" class="title">Package&nbsp;fr.iutfbleau.projetAgile.Controller</h1>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
-<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Class</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></td>
-<td class="colLast">
-<div class="block">Observateur des Boutons du Menu</div>
-</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Package</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-tree.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-tree.html
deleted file mode 100644
index 878b49f..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Controller/package-tree.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Controller Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Controller Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For Package fr.iutfbleau.projetAgile.Controller</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="../../../../overview-tree.html">All Packages</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ModelEventListener</span></a> (implements fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>)</li>
-<li type="circle">java.awt.event.MouseAdapter (implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener, java.awt.event.MouseWheelListener)
-<ul>
-<li type="circle">javax.swing.event.MouseInputAdapter (implements javax.swing.event.MouseInputListener)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="../../../../fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">GrilleMouseListener</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="../../../../fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ObservateurMenuSouris</span></a> (implements java.awt.event.MouseListener)</li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="../../../../fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Puissance4Controller</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ResetGame</span></a> (implements java.awt.event.ActionListener)</li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Controller/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html
deleted file mode 100644
index 59a39c4..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html
+++ /dev/null
@@ -1,405 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>AbstractGridInitiater</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractGridInitiater";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" target="_top">Frames</a></li>
-<li><a href="AbstractGridInitiater.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Event</div>
-<h2 title="Class AbstractGridInitiater" class="title">Class AbstractGridInitiater</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Event.AbstractGridInitiater</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>Direct Known Subclasses:</dt>
-<dd><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dd>
-</dl>
-<hr>
-<br>
-<pre>public abstract class <span class="typeNameLabel">AbstractGridInitiater</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
-<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Field and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>protected javax.swing.event.EventListenerList</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#listeners">listeners</a></span></code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#AbstractGridInitiater--">AbstractGridInitiater</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#addGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">addGridListener</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>&nbsp;listener)</code>
-<div class="block">Ajoute le listener donné en argument à la liste des listes</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#fireGridChanged-int-int-int-">fireGridChanged</a></span>(int&nbsp;column,
-               int&nbsp;row,
-               int&nbsp;player)</code>
-<div class="block">Notifie tous les listeners lorsque la grille est modifié</div>
-</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#firePlayerChanged-int-int-">firePlayerChanged</a></span>(int&nbsp;oldPlayer,
-                 int&nbsp;newPlayer)</code>
-<div class="block">Notifie tous les listeners lorsque le tour du joueur change</div>
-</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>[]</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#getGridListeners--">getGridListeners</a></span>()</code>
-<div class="block">Retourne un tableau de tous les listeners</div>
-</td>
-</tr>
-<tr id="i4" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#removeGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">removeGridListener</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>&nbsp;listener)</code>
-<div class="block">Supprime le listener donné en argument de la liste des listeners</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ============ FIELD DETAIL =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.detail">
-<!--   -->
-</a>
-<h3>Field Detail</h3>
-<a name="listeners">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>listeners</h4>
-<pre>protected&nbsp;javax.swing.event.EventListenerList listeners</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="AbstractGridInitiater--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>AbstractGridInitiater</h4>
-<pre>public&nbsp;AbstractGridInitiater()</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="addGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>addGridListener</h4>
-<pre>public&nbsp;void&nbsp;addGridListener(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>&nbsp;listener)</pre>
-<div class="block">Ajoute le listener donné en argument à la liste des listes</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>listener</code> - Le listener a ajouté</dd>
-</dl>
-</li>
-</ul>
-<a name="removeGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>removeGridListener</h4>
-<pre>public&nbsp;void&nbsp;removeGridListener(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>&nbsp;listener)</pre>
-<div class="block">Supprime le listener donné en argument de la liste des listeners</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>listener</code> - Le listener a supprimer</dd>
-</dl>
-</li>
-</ul>
-<a name="getGridListeners--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getGridListeners</h4>
-<pre>public&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>[]&nbsp;getGridListeners()</pre>
-<div class="block">Retourne un tableau de tous les listeners</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>Le tableau de listeners</dd>
-</dl>
-</li>
-</ul>
-<a name="fireGridChanged-int-int-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>fireGridChanged</h4>
-<pre>protected&nbsp;void&nbsp;fireGridChanged(int&nbsp;column,
-                               int&nbsp;row,
-                               int&nbsp;player)</pre>
-<div class="block">Notifie tous les listeners lorsque la grille est modifié</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>column</code> - la colonne modifié</dd>
-<dd><code>row</code> - la ligne modifié</dd>
-<dd><code>player</code> - le joueur qui a joué</dd>
-</dl>
-</li>
-</ul>
-<a name="firePlayerChanged-int-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>firePlayerChanged</h4>
-<pre>protected&nbsp;void&nbsp;firePlayerChanged(int&nbsp;oldPlayer,
-                                 int&nbsp;newPlayer)</pre>
-<div class="block">Notifie tous les listeners lorsque le tour du joueur change</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>oldPlayer</code> - L'ancien joueur qui jouait</dd>
-<dd><code>newPlayer</code> - Le nouveau joueur qui joue</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" target="_top">Frames</a></li>
-<li><a href="AbstractGridInitiater.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridChangedListener.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridChangedListener.html
deleted file mode 100644
index 1f90df0..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridChangedListener.html
+++ /dev/null
@@ -1,255 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>GridChangedListener</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GridChangedListener";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":6,"i1":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/GridChangedListener.html" target="_top">Frames</a></li>
-<li><a href="GridChangedListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Event</div>
-<h2 title="Interface GridChangedListener" class="title">Interface GridChangedListener</h2>
-</div>
-<div class="contentContainer">
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Superinterfaces:</dt>
-<dd>java.util.EventListener</dd>
-</dl>
-<dl>
-<dt>All Known Implementing Classes:</dt>
-<dd><a href="../../../../fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></dd>
-</dl>
-<hr>
-<br>
-<pre>public interface <span class="typeNameLabel">GridChangedListener</span>
-extends java.util.EventListener</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">gridChanged</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a>&nbsp;e)</code>
-<div class="block">Méthode invoqué lorsque la grille est modifié</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">playerChanged</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a>&nbsp;e)</code>
-<div class="block">Méthode invoqué lorsque le tour du joueur est modifié</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>gridChanged</h4>
-<pre>void&nbsp;gridChanged(<a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a>&nbsp;e)</pre>
-<div class="block">Méthode invoqué lorsque la grille est modifié</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>e</code> - Evenement contenant la colonne, ligne et joueur du pion placé dans la grille</dd>
-</dl>
-</li>
-</ul>
-<a name="playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>playerChanged</h4>
-<pre>void&nbsp;playerChanged(<a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a>&nbsp;e)</pre>
-<div class="block">Méthode invoqué lorsque le tour du joueur est modifié</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>e</code> - Evenement contenant l'ancien joueur et le nouveau</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/GridChangedListener.html" target="_top">Frames</a></li>
-<li><a href="GridChangedListener.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridEvent.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridEvent.html
deleted file mode 100644
index db8a5fe..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/GridEvent.html
+++ /dev/null
@@ -1,329 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>GridEvent</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GridEvent";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/GridEvent.html" target="_top">Frames</a></li>
-<li><a href="GridEvent.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Event</div>
-<h2 title="Class GridEvent" class="title">Class GridEvent</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Event.GridEvent</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">GridEvent</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html#GridEvent-int-int-int-">GridEvent</a></span>(int&nbsp;column,
-         int&nbsp;row,
-         int&nbsp;player)</code>
-<div class="block">Evenement représentant le changement dans la grille</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html#getColumn--">getColumn</a></span>()</code>
-<div class="block">Retourne la colonne modifié</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html#getPlayer--">getPlayer</a></span>()</code>
-<div class="block">Retourne le joueur qui a joué</div>
-</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html#getRow--">getRow</a></span>()</code>
-<div class="block">Retourne la ligne modifié</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="GridEvent-int-int-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>GridEvent</h4>
-<pre>public&nbsp;GridEvent(int&nbsp;column,
-                 int&nbsp;row,
-                 int&nbsp;player)</pre>
-<div class="block">Evenement représentant le changement dans la grille</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>column</code> - la colonne modifié</dd>
-<dd><code>row</code> - la ligne modifié</dd>
-<dd><code>player</code> - le joueur qui a joué</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="getColumn--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getColumn</h4>
-<pre>public&nbsp;int&nbsp;getColumn()</pre>
-<div class="block">Retourne la colonne modifié</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>La colonne modifié</dd>
-</dl>
-</li>
-</ul>
-<a name="getRow--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getRow</h4>
-<pre>public&nbsp;int&nbsp;getRow()</pre>
-<div class="block">Retourne la ligne modifié</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>la ligne modifié</dd>
-</dl>
-</li>
-</ul>
-<a name="getPlayer--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>getPlayer</h4>
-<pre>public&nbsp;int&nbsp;getPlayer()</pre>
-<div class="block">Retourne le joueur qui a joué</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>Le joueur qui a joué</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/GridEvent.html" target="_top">Frames</a></li>
-<li><a href="GridEvent.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/PlayerEvent.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/PlayerEvent.html
deleted file mode 100644
index 2cd5499..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/PlayerEvent.html
+++ /dev/null
@@ -1,306 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>PlayerEvent</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PlayerEvent";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/PlayerEvent.html" target="_top">Frames</a></li>
-<li><a href="PlayerEvent.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Event</div>
-<h2 title="Class PlayerEvent" class="title">Class PlayerEvent</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Event.PlayerEvent</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">PlayerEvent</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html#PlayerEvent-int-int-">PlayerEvent</a></span>(int&nbsp;oldPlayer,
-           int&nbsp;newPlayer)</code>
-<div class="block">Evenement représentant le changement de tour des joueurs</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html#getNewPlayer--">getNewPlayer</a></span>()</code>
-<div class="block">Retourne le nouveau joueur</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html#getOldPlayer--">getOldPlayer</a></span>()</code>
-<div class="block">Retourne l'ancien joueur</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="PlayerEvent-int-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>PlayerEvent</h4>
-<pre>public&nbsp;PlayerEvent(int&nbsp;oldPlayer,
-                   int&nbsp;newPlayer)</pre>
-<div class="block">Evenement représentant le changement de tour des joueurs</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>oldPlayer</code> - l'ancien joueur</dd>
-<dd><code>newPlayer</code> - le nouveau joueur</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="getNewPlayer--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getNewPlayer</h4>
-<pre>public&nbsp;int&nbsp;getNewPlayer()</pre>
-<div class="block">Retourne le nouveau joueur</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>Le nouveau joueur</dd>
-</dl>
-</li>
-</ul>
-<a name="getOldPlayer--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>getOldPlayer</h4>
-<pre>public&nbsp;int&nbsp;getOldPlayer()</pre>
-<div class="block">Retourne l'ancien joueur</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>L'ancien joueur</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/PlayerEvent.html" target="_top">Frames</a></li>
-<li><a href="PlayerEvent.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-frame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-frame.html
deleted file mode 100644
index 49270b2..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-frame.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Event</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<h1 class="bar"><a href="../../../../fr/iutfbleau/projetAgile/Event/package-summary.html" target="classFrame">fr.iutfbleau.projetAgile.Event</a></h1>
-<div class="indexContainer">
-<h2 title="Interfaces">Interfaces</h2>
-<ul title="Interfaces">
-<li><a href="GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event" target="classFrame"><span class="interfaceName">GridChangedListener</span></a></li>
-</ul>
-<h2 title="Classes">Classes</h2>
-<ul title="Classes">
-<li><a href="AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">AbstractGridInitiater</a></li>
-<li><a href="GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">GridEvent</a></li>
-<li><a href="PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event" target="classFrame">PlayerEvent</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-summary.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-summary.html
deleted file mode 100644
index 988b8cf..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-summary.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Event</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Event";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Package" class="title">Package&nbsp;fr.iutfbleau.projetAgile.Event</h1>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation">
-<caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Interface</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
-<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Class</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-tree.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-tree.html
deleted file mode 100644
index 61159c4..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Event/package-tree.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Event Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Event Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For Package fr.iutfbleau.projetAgile.Event</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="../../../../overview-tree.html">All Packages</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">AbstractGridInitiater</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridEvent</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">PlayerEvent</span></a></li>
-</ul>
-</li>
-</ul>
-<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
-<ul>
-<li type="circle">java.util.EventListener
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridChangedListener</span></a></li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Controller/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Event/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/GrilleModel.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Model/GrilleModel.html
deleted file mode 100644
index 1c18c78..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/GrilleModel.html
+++ /dev/null
@@ -1,453 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:14 CEST 2022 -->
-<title>GrilleModel</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GrilleModel";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/GrilleModel.html" target="_top">Frames</a></li>
-<li><a href="GrilleModel.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.fr.iutfbleau.projetAgile.Event.AbstractGridInitiater">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Model</div>
-<h2 title="Class GrilleModel" class="title">Class GrilleModel</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">fr.iutfbleau.projetAgile.Event.AbstractGridInitiater</a></li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Model.GrilleModel</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">GrilleModel</span>
-extends <a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.fr.iutfbleau.projetAgile.Event.AbstractGridInitiater">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></h3>
-<code><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#listeners">listeners</a></code></li>
-</ul>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#GrilleModel--">GrilleModel</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#addPiece-int-int-">addPiece</a></span>(int&nbsp;column,
-        int&nbsp;row)</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#getColumn--">getColumn</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#getGameStatus--">getGameStatus</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#getPlayerTurn--">getPlayerTurn</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i4" class="altColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#getRow--">getRow</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i5" class="rowColor">
-<td class="colFirst"><code>int[][]</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#getTab--">getTab</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i6" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#init--">init</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i7" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#reset--">reset</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i8" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#setPartyStatus-fr.iutfbleau.projetAgile.Utils.GameStatus-">setPartyStatus</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&nbsp;gameStatus)</code>&nbsp;</td>
-</tr>
-<tr id="i9" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#switchPlayer--">switchPlayer</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i10" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#verifyColumn-int-">verifyColumn</a></span>(int&nbsp;column)</code>&nbsp;</td>
-</tr>
-<tr id="i11" class="rowColor">
-<td class="colFirst"><code>protected boolean</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html#verifyWin-int-int-">verifyWin</a></span>(int&nbsp;column,
-         int&nbsp;row)</code>
-<div class="block">Vérifie si le jeton qui vient d'être joué termine la partie</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.fr.iutfbleau.projetAgile.Event.AbstractGridInitiater">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></h3>
-<code><a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#addGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">addGridListener</a>, <a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#fireGridChanged-int-int-int-">fireGridChanged</a>, <a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#firePlayerChanged-int-int-">firePlayerChanged</a>, <a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#getGridListeners--">getGridListeners</a>, <a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#removeGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">removeGridListener</a></code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="GrilleModel--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>GrilleModel</h4>
-<pre>public&nbsp;GrilleModel()</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="init--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>init</h4>
-<pre>public&nbsp;void&nbsp;init()</pre>
-</li>
-</ul>
-<a name="reset--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>reset</h4>
-<pre>public&nbsp;void&nbsp;reset()</pre>
-</li>
-</ul>
-<a name="addPiece-int-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>addPiece</h4>
-<pre>protected&nbsp;void&nbsp;addPiece(int&nbsp;column,
-                        int&nbsp;row)</pre>
-</li>
-</ul>
-<a name="verifyColumn-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>verifyColumn</h4>
-<pre>public&nbsp;void&nbsp;verifyColumn(int&nbsp;column)</pre>
-</li>
-</ul>
-<a name="verifyWin-int-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>verifyWin</h4>
-<pre>protected&nbsp;boolean&nbsp;verifyWin(int&nbsp;column,
-                            int&nbsp;row)</pre>
-<div class="block">Vérifie si le jeton qui vient d'être joué termine la partie</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>column</code> - La colonne du pion qui vient d'être joué</dd>
-<dd><code>row</code> - La ligne du pion qui vient d'être joué</dd>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>Retourne true si le jeu est fini</dd>
-</dl>
-</li>
-</ul>
-<a name="switchPlayer--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>switchPlayer</h4>
-<pre>public&nbsp;void&nbsp;switchPlayer()</pre>
-</li>
-</ul>
-<a name="getPlayerTurn--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPlayerTurn</h4>
-<pre>public&nbsp;int&nbsp;getPlayerTurn()</pre>
-</li>
-</ul>
-<a name="getTab--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getTab</h4>
-<pre>public&nbsp;int[][]&nbsp;getTab()</pre>
-</li>
-</ul>
-<a name="getColumn--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getColumn</h4>
-<pre>public&nbsp;int&nbsp;getColumn()</pre>
-</li>
-</ul>
-<a name="getRow--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getRow</h4>
-<pre>public&nbsp;int&nbsp;getRow()</pre>
-</li>
-</ul>
-<a name="setPartyStatus-fr.iutfbleau.projetAgile.Utils.GameStatus-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>setPartyStatus</h4>
-<pre>public&nbsp;void&nbsp;setPartyStatus(<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&nbsp;gameStatus)</pre>
-</li>
-</ul>
-<a name="getGameStatus--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>getGameStatus</h4>
-<pre>public&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&nbsp;getGameStatus()</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/GrilleModel.html" target="_top">Frames</a></li>
-<li><a href="GrilleModel.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.fr.iutfbleau.projetAgile.Event.AbstractGridInitiater">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-frame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-frame.html
deleted file mode 100644
index 3cabebb..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-frame.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Model</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<h1 class="bar"><a href="../../../../fr/iutfbleau/projetAgile/Model/package-summary.html" target="classFrame">fr.iutfbleau.projetAgile.Model</a></h1>
-<div class="indexContainer">
-<h2 title="Classes">Classes</h2>
-<ul title="Classes">
-<li><a href="GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model" target="classFrame">GrilleModel</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-summary.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-summary.html
deleted file mode 100644
index c187f97..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-summary.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Model</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Model";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Package" class="title">Package&nbsp;fr.iutfbleau.projetAgile.Model</h1>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
-<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Class</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-tree.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-tree.html
deleted file mode 100644
index 150e3ba..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Model/package-tree.html
+++ /dev/null
@@ -1,139 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Model Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Model Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For Package fr.iutfbleau.projetAgile.Model</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="../../../../overview-tree.html">All Packages</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="../../../../fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">AbstractGridInitiater</span></a>
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Model.<a href="../../../../fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model"><span class="typeNameLink">GrilleModel</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Event/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Model/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/Constants.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/Constants.html
deleted file mode 100644
index ce85d92..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/Constants.html
+++ /dev/null
@@ -1,417 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:14 CEST 2022 -->
-<title>Constants</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constants";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/Constants.html" target="_top">Frames</a></li>
-<li><a href="Constants.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li>Method</li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Utils</div>
-<h2 title="Class Constants" class="title">Class Constants</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Utils.Constants</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">Constants</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
-<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Field and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static java.awt.Color</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#BACKGROUND_COLOR">BACKGROUND_COLOR</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#COLUMN_COUNT">COLUMN_COUNT</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static boolean</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#DRAW_POSITION">DRAW_POSITION</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><code>static java.awt.Color</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#EMPTY_COLOR">EMPTY_COLOR</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#EMPTY_PLAYER">EMPTY_PLAYER</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#PIECE_MARGIN">PIECE_MARGIN</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_ONE">PLAYER_ONE</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><code>static java.awt.Color</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_ONE_COLOR">PLAYER_ONE_COLOR</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_TWO">PLAYER_TWO</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><code>static java.awt.Color</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_TWO_COLOR">PLAYER_TWO_COLOR</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#ROW_COUNT">ROW_COUNT</a></span></code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html#Constants--">Constants</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ============ FIELD DETAIL =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.detail">
-<!--   -->
-</a>
-<h3>Field Detail</h3>
-<a name="PLAYER_ONE_COLOR">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PLAYER_ONE_COLOR</h4>
-<pre>public static final&nbsp;java.awt.Color PLAYER_ONE_COLOR</pre>
-</li>
-</ul>
-<a name="PLAYER_TWO_COLOR">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PLAYER_TWO_COLOR</h4>
-<pre>public static final&nbsp;java.awt.Color PLAYER_TWO_COLOR</pre>
-</li>
-</ul>
-<a name="BACKGROUND_COLOR">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>BACKGROUND_COLOR</h4>
-<pre>public static final&nbsp;java.awt.Color BACKGROUND_COLOR</pre>
-</li>
-</ul>
-<a name="EMPTY_COLOR">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>EMPTY_COLOR</h4>
-<pre>public static final&nbsp;java.awt.Color EMPTY_COLOR</pre>
-</li>
-</ul>
-<a name="EMPTY_PLAYER">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>EMPTY_PLAYER</h4>
-<pre>public static final&nbsp;int EMPTY_PLAYER</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../constant-values.html#fr.iutfbleau.projetAgile.Utils.Constants.EMPTY_PLAYER">Constant Field Values</a></dd>
-</dl>
-</li>
-</ul>
-<a name="PLAYER_ONE">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PLAYER_ONE</h4>
-<pre>public static final&nbsp;int PLAYER_ONE</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../constant-values.html#fr.iutfbleau.projetAgile.Utils.Constants.PLAYER_ONE">Constant Field Values</a></dd>
-</dl>
-</li>
-</ul>
-<a name="PLAYER_TWO">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PLAYER_TWO</h4>
-<pre>public static final&nbsp;int PLAYER_TWO</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../constant-values.html#fr.iutfbleau.projetAgile.Utils.Constants.PLAYER_TWO">Constant Field Values</a></dd>
-</dl>
-</li>
-</ul>
-<a name="DRAW_POSITION">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>DRAW_POSITION</h4>
-<pre>public static final&nbsp;boolean DRAW_POSITION</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../constant-values.html#fr.iutfbleau.projetAgile.Utils.Constants.DRAW_POSITION">Constant Field Values</a></dd>
-</dl>
-</li>
-</ul>
-<a name="PIECE_MARGIN">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PIECE_MARGIN</h4>
-<pre>public static&nbsp;int PIECE_MARGIN</pre>
-</li>
-</ul>
-<a name="COLUMN_COUNT">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>COLUMN_COUNT</h4>
-<pre>public static&nbsp;int COLUMN_COUNT</pre>
-</li>
-</ul>
-<a name="ROW_COUNT">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>ROW_COUNT</h4>
-<pre>public static&nbsp;int ROW_COUNT</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Constants--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Constants</h4>
-<pre>public&nbsp;Constants()</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/Constants.html" target="_top">Frames</a></li>
-<li><a href="Constants.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li>Method</li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/GameStatus.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/GameStatus.html
deleted file mode 100644
index 2c802de..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/GameStatus.html
+++ /dev/null
@@ -1,351 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:14 CEST 2022 -->
-<title>GameStatus</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GameStatus";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":9,"i1":9};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/GameStatus.html" target="_top">Frames</a></li>
-<li><a href="GameStatus.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.Utils</div>
-<h2 title="Enum GameStatus" class="title">Enum GameStatus</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.lang.Enum&lt;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&gt;</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.Utils.GameStatus</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&gt;</dd>
-</dl>
-<hr>
-<br>
-<pre>public enum <span class="typeNameLabel">GameStatus</span>
-extends java.lang.Enum&lt;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&gt;</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- =========== ENUM CONSTANT SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="enum.constant.summary">
-<!--   -->
-</a>
-<h3>Enum Constant Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
-<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Enum Constant and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html#DRAW">DRAW</a></span></code>&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html#PLAYING">PLAYING</a></span></code>&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html#STOP">STOP</a></span></code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>static <a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code>
-<div class="block">Returns the enum constant of this type with the specified name.</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>static <a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>[]</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html#values--">values</a></span>()</code>
-<div class="block">Returns an array containing the constants of this enum type, in
-the order they are declared.</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
-<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ============ ENUM CONSTANT DETAIL =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="enum.constant.detail">
-<!--   -->
-</a>
-<h3>Enum Constant Detail</h3>
-<a name="PLAYING">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>PLAYING</h4>
-<pre>public static final&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a> PLAYING</pre>
-</li>
-</ul>
-<a name="STOP">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>STOP</h4>
-<pre>public static final&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a> STOP</pre>
-</li>
-</ul>
-<a name="DRAW">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>DRAW</h4>
-<pre>public static final&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a> DRAW</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="values--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>values</h4>
-<pre>public static&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>[]&nbsp;values()</pre>
-<div class="block">Returns an array containing the constants of this enum type, in
-the order they are declared.  This method may be used to iterate
-over the constants as follows:
-<pre>
-for (GameStatus c : GameStatus.values())
-&nbsp;   System.out.println(c);
-</pre></div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>an array containing the constants of this enum type, in the order they are declared</dd>
-</dl>
-</li>
-</ul>
-<a name="valueOf-java.lang.String-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>valueOf</h4>
-<pre>public static&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre>
-<div class="block">Returns the enum constant of this type with the specified name.
-The string must match <i>exactly</i> an identifier used to declare an
-enum constant in this type.  (Extraneous whitespace characters are 
-not permitted.)</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>name</code> - the name of the enum constant to be returned.</dd>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>the enum constant with the specified name</dd>
-<dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
-<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/GameStatus.html" target="_top">Frames</a></li>
-<li><a href="GameStatus.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-frame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-frame.html
deleted file mode 100644
index 3f20fd7..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Utils</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<h1 class="bar"><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-summary.html" target="classFrame">fr.iutfbleau.projetAgile.Utils</a></h1>
-<div class="indexContainer">
-<h2 title="Classes">Classes</h2>
-<ul title="Classes">
-<li><a href="Constants.html" title="class in fr.iutfbleau.projetAgile.Utils" target="classFrame">Constants</a></li>
-</ul>
-<h2 title="Enums">Enums</h2>
-<ul title="Enums">
-<li><a href="GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils" target="classFrame">GameStatus</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-summary.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-summary.html
deleted file mode 100644
index b2d6e25..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-summary.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Utils</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Utils";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Package" class="title">Package&nbsp;fr.iutfbleau.projetAgile.Utils</h1>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
-<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Class</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation">
-<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Enum</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-summary.html">Prev&nbsp;Package</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/package-summary.html">Next&nbsp;Package</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-tree.html b/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-tree.html
deleted file mode 100644
index c4c1a89..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/Utils/package-tree.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.Utils Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.Utils Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For Package fr.iutfbleau.projetAgile.Utils</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="../../../../overview-tree.html">All Packages</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Utils.<a href="../../../../fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Constants</span></a></li>
-</ul>
-</li>
-</ul>
-<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Utils.<a href="../../../../fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">GameStatus</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Model/package-tree.html">Prev</a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/package-tree.html">Next</a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/Utils/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/BoutonsMenu.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/BoutonsMenu.html
deleted file mode 100644
index 3ae9ae2..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/BoutonsMenu.html
+++ /dev/null
@@ -1,423 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:14 CEST 2022 -->
-<title>BoutonsMenu</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BoutonsMenu";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/BoutonsMenu.html" target="_top">Frames</a></li>
-<li><a href="BoutonsMenu.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JComponent">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.View</div>
-<h2 title="Class BoutonsMenu" class="title">Class BoutonsMenu</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Component</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Container</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JComponent</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.View.BoutonsMenu</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">BoutonsMenu</span>
-extends javax.swing.JComponent</pre>
-<div class="block">Class Dessinant les boutons du menu</div>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../serialized-form.html#fr.iutfbleau.projetAgile.View.BoutonsMenu">Serialized Form</a></dd>
-</dl>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== NESTED CLASS SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="nested.class.summary">
-<!--   -->
-</a>
-<h3>Nested Class Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>javax.swing.JComponent.AccessibleJComponent</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Container</h3>
-<code>java.awt.Container.AccessibleAWTContainer</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Component</h3>
-<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
-</ul>
-</li>
-</ul>
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;java.awt.Component</h3>
-<code>accessibleContext, BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
-<!--   -->
-</a>
-<h3>Fields inherited from interface&nbsp;java.awt.image.ImageObserver</h3>
-<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
-</ul>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html#BoutonsMenu-java.lang.String-">BoutonsMenu</a></span>(java.lang.String&nbsp;path0)</code>
-<div class="block">Constructeur</div>
-</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>java.lang.String</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html#getPath--">getPath</a></span>()</code>
-<div class="block">Connaitre le chemin de l'image et donc le type du jeu</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html#paintComponent-java.awt.Graphics-">paintComponent</a></span>(java.awt.Graphics&nbsp;pinceau)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html#setSurvol-boolean-">setSurvol</a></span>(boolean&nbsp;bol)</code>
-<div class="block">savoir si le bouton est survoler</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getUIClassID, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintImmediately, paintImmediately, paramString, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update, updateUI</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Container</h3>
-<code>add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Component</h3>
-<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getAccessibleContext, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="BoutonsMenu-java.lang.String-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>BoutonsMenu</h4>
-<pre>public&nbsp;BoutonsMenu(java.lang.String&nbsp;path0)</pre>
-<div class="block">Constructeur</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>path0</code> - il correspond au path de l'image qui devra être afficher</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="setSurvol-boolean-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>setSurvol</h4>
-<pre>public&nbsp;void&nbsp;setSurvol(boolean&nbsp;bol)</pre>
-<div class="block">savoir si le bouton est survoler</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>bol</code> - </dd>
-</dl>
-</li>
-</ul>
-<a name="getPath--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPath</h4>
-<pre>public&nbsp;java.lang.String&nbsp;getPath()</pre>
-<div class="block">Connaitre le chemin de l'image et donc le type du jeu</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>le String du jeu du boutons</dd>
-</dl>
-</li>
-</ul>
-<a name="paintComponent-java.awt.Graphics-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>paintComponent</h4>
-<pre>protected&nbsp;void&nbsp;paintComponent(java.awt.Graphics&nbsp;pinceau)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>paintComponent</code>&nbsp;in class&nbsp;<code>javax.swing.JComponent</code></dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/BoutonsMenu.html" target="_top">Frames</a></li>
-<li><a href="BoutonsMenu.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JComponent">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Grille.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/Grille.html
deleted file mode 100644
index e776270..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Grille.html
+++ /dev/null
@@ -1,433 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Grille</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Grille";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Grille.html" target="_top">Frames</a></li>
-<li><a href="Grille.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JPanel">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.View</div>
-<h2 title="Class Grille" class="title">Class Grille</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Component</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Container</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JComponent</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JPanel</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.View.Grille</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, javax.accessibility.Accessible</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">Grille</span>
-extends javax.swing.JPanel</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../serialized-form.html#fr.iutfbleau.projetAgile.View.Grille">Serialized Form</a></dd>
-</dl>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== NESTED CLASS SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="nested.class.summary">
-<!--   -->
-</a>
-<h3>Nested Class Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JPanel">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JPanel</h3>
-<code>javax.swing.JPanel.AccessibleJPanel</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>javax.swing.JComponent.AccessibleJComponent</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Container</h3>
-<code>java.awt.Container.AccessibleAWTContainer</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Component</h3>
-<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
-</ul>
-</li>
-</ul>
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;java.awt.Component</h3>
-<code>accessibleContext, BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
-<!--   -->
-</a>
-<h3>Fields inherited from interface&nbsp;java.awt.image.ImageObserver</h3>
-<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
-</ul>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html#Grille--">Grille</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html#addPlayerPiece-int-int-int-">addPlayerPiece</a></span>(int&nbsp;column,
-              int&nbsp;row,
-              int&nbsp;player)</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html#hover-int-">hover</a></span>(int&nbsp;column)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html#init-int:A:A-">init</a></span>(int[][]&nbsp;tab)</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html#reset--">reset</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JPanel">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JPanel</h3>
-<code>getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Container</h3>
-<code>add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Component</h3>
-<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Grille--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Grille</h4>
-<pre>public&nbsp;Grille()</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="init-int:A:A-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>init</h4>
-<pre>public&nbsp;void&nbsp;init(int[][]&nbsp;tab)</pre>
-</li>
-</ul>
-<a name="addPlayerPiece-int-int-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>addPlayerPiece</h4>
-<pre>public&nbsp;void&nbsp;addPlayerPiece(int&nbsp;column,
-                           int&nbsp;row,
-                           int&nbsp;player)</pre>
-</li>
-</ul>
-<a name="reset--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>reset</h4>
-<pre>public&nbsp;void&nbsp;reset()</pre>
-</li>
-</ul>
-<a name="hover-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>hover</h4>
-<pre>public&nbsp;void&nbsp;hover(int&nbsp;column)</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Grille.html" target="_top">Frames</a></li>
-<li><a href="Grille.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JPanel">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Menu.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/Menu.html
deleted file mode 100644
index f24b7d7..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Menu.html
+++ /dev/null
@@ -1,355 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Menu</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Menu";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":9,"i1":9,"i2":9};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Menu.html" target="_top">Frames</a></li>
-<li><a href="Menu.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.View</div>
-<h2 title="Class Menu" class="title">Class Menu</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.View.Menu</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<hr>
-<br>
-<pre>public abstract class <span class="typeNameLabel">Menu</span>
-extends java.lang.Object</pre>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
-<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Field and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><code>static java.lang.String</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html#PUISSANCE_4">PUISSANCE_4</a></span></code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html#Menu--">Menu</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>static javax.swing.JFrame</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html#getFrame--">getFrame</a></span>()</code>
-<div class="block">getter pouvant initialiser la JFrame</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>static javax.swing.JPanel</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html#InitMenu--">InitMenu</a></span>()</code>
-<div class="block">methode static pour avoir le JPanel Affichant le Menu</div>
-</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>static void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html#show-java.lang.String-">show</a></span>(java.lang.String&nbsp;g)</code>
-<div class="block">Methode pour changer le cardLayout</div>
-</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ============ FIELD DETAIL =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.detail">
-<!--   -->
-</a>
-<h3>Field Detail</h3>
-<a name="PUISSANCE_4">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>PUISSANCE_4</h4>
-<pre>public static&nbsp;java.lang.String PUISSANCE_4</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Menu--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Menu</h4>
-<pre>public&nbsp;Menu()</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="InitMenu--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>InitMenu</h4>
-<pre>public static&nbsp;javax.swing.JPanel&nbsp;InitMenu()</pre>
-<div class="block">methode static pour avoir le JPanel Affichant le Menu</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>un JPanel instancier avec les composant du menu</dd>
-</dl>
-</li>
-</ul>
-<a name="show-java.lang.String-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>show</h4>
-<pre>public static&nbsp;void&nbsp;show(java.lang.String&nbsp;g)
-                 throws java.lang.IllegalArgumentException</pre>
-<div class="block">Methode pour changer le cardLayout</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>g</code> - le string de la carte correspondant</dd>
-<dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.lang.IllegalArgumentException</code> - si l'argument ne correspond pas a une Carte</dd>
-</dl>
-</li>
-</ul>
-<a name="getFrame--">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>getFrame</h4>
-<pre>public static&nbsp;javax.swing.JFrame&nbsp;getFrame()</pre>
-<div class="block">getter pouvant initialiser la JFrame</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>la fenetre</dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Menu.html" target="_top">Frames</a></li>
-<li><a href="Menu.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
-<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Pion.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/Pion.html
deleted file mode 100644
index 8798575..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Pion.html
+++ /dev/null
@@ -1,453 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Pion</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Pion";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":9,"i1":9,"i2":9,"i3":10,"i4":10,"i5":10,"i6":10};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Pion.html" target="_top">Frames</a></li>
-<li><a href="Pion.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JComponent">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.View</div>
-<h2 title="Class Pion" class="title">Class Pion</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Component</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Container</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JComponent</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.View.Pion</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">Pion</span>
-extends javax.swing.JComponent</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../serialized-form.html#fr.iutfbleau.projetAgile.View.Pion">Serialized Form</a></dd>
-</dl>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== NESTED CLASS SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="nested.class.summary">
-<!--   -->
-</a>
-<h3>Nested Class Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>javax.swing.JComponent.AccessibleJComponent</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Container</h3>
-<code>java.awt.Container.AccessibleAWTContainer</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Component</h3>
-<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
-</ul>
-</li>
-</ul>
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;java.awt.Component</h3>
-<code>accessibleContext, BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
-<!--   -->
-</a>
-<h3>Fields inherited from interface&nbsp;java.awt.image.ImageObserver</h3>
-<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
-</ul>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#Pion-int-">Pion</a></span>(int&nbsp;player)</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>static java.awt.Dimension</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#getPionMaximumSize--">getPionMaximumSize</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>static java.awt.Dimension</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#getPionMinimumSize--">getPionMinimumSize</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>static java.awt.Dimension</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#getPionPreferredSize--">getPionPreferredSize</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code>int</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i4" class="altColor">
-<td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#paintComponent-java.awt.Graphics-">paintComponent</a></span>(java.awt.Graphics&nbsp;g)</code>&nbsp;</td>
-</tr>
-<tr id="i5" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#setHover-boolean-">setHover</a></span>(boolean&nbsp;b)</code>&nbsp;</td>
-</tr>
-<tr id="i6" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html#setPlayer-int-">setPlayer</a></span>(int&nbsp;player)</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getUIClassID, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintImmediately, paintImmediately, paramString, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update, updateUI</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Container</h3>
-<code>add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Component</h3>
-<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getAccessibleContext, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Pion-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Pion</h4>
-<pre>public&nbsp;Pion(int&nbsp;player)</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="getPionMinimumSize--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPionMinimumSize</h4>
-<pre>public static&nbsp;java.awt.Dimension&nbsp;getPionMinimumSize()</pre>
-</li>
-</ul>
-<a name="getPionMaximumSize--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPionMaximumSize</h4>
-<pre>public static&nbsp;java.awt.Dimension&nbsp;getPionMaximumSize()</pre>
-</li>
-</ul>
-<a name="getPionPreferredSize--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPionPreferredSize</h4>
-<pre>public static&nbsp;java.awt.Dimension&nbsp;getPionPreferredSize()</pre>
-</li>
-</ul>
-<a name="setPlayer-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>setPlayer</h4>
-<pre>public&nbsp;void&nbsp;setPlayer(int&nbsp;player)</pre>
-</li>
-</ul>
-<a name="setHover-boolean-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>setHover</h4>
-<pre>public&nbsp;void&nbsp;setHover(boolean&nbsp;b)</pre>
-</li>
-</ul>
-<a name="getPlayer--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getPlayer</h4>
-<pre>public&nbsp;int&nbsp;getPlayer()</pre>
-</li>
-</ul>
-<a name="paintComponent-java.awt.Graphics-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>paintComponent</h4>
-<pre>protected&nbsp;void&nbsp;paintComponent(java.awt.Graphics&nbsp;g)</pre>
-<dl>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>paintComponent</code>&nbsp;in class&nbsp;<code>javax.swing.JComponent</code></dd>
-</dl>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Pion.html" target="_top">Frames</a></li>
-<li><a href="Pion.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JComponent">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Puissance4Panel.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/Puissance4Panel.html
deleted file mode 100644
index 44cf317..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/Puissance4Panel.html
+++ /dev/null
@@ -1,446 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Puissance4Panel</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Puissance4Panel";
-        }
-    }
-    catch(err) {
-    }
-//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Puissance4Panel.html" target="_top">Frames</a></li>
-<li><a href="Puissance4Panel.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JPanel">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<!-- ======== START OF CLASS DATA ======== -->
-<div class="header">
-<div class="subTitle">fr.iutfbleau.projetAgile.View</div>
-<h2 title="Class Puissance4Panel" class="title">Class Puissance4Panel</h2>
-</div>
-<div class="contentContainer">
-<ul class="inheritance">
-<li>java.lang.Object</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Component</li>
-<li>
-<ul class="inheritance">
-<li>java.awt.Container</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JComponent</li>
-<li>
-<ul class="inheritance">
-<li>javax.swing.JPanel</li>
-<li>
-<ul class="inheritance">
-<li>fr.iutfbleau.projetAgile.View.Puissance4Panel</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-<div class="description">
-<ul class="blockList">
-<li class="blockList">
-<dl>
-<dt>All Implemented Interfaces:</dt>
-<dd>java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, javax.accessibility.Accessible</dd>
-</dl>
-<hr>
-<br>
-<pre>public class <span class="typeNameLabel">Puissance4Panel</span>
-extends javax.swing.JPanel</pre>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../../serialized-form.html#fr.iutfbleau.projetAgile.View.Puissance4Panel">Serialized Form</a></dd>
-</dl>
-</li>
-</ul>
-</div>
-<div class="summary">
-<ul class="blockList">
-<li class="blockList">
-<!-- ======== NESTED CLASS SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="nested.class.summary">
-<!--   -->
-</a>
-<h3>Nested Class Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JPanel">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JPanel</h3>
-<code>javax.swing.JPanel.AccessibleJPanel</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>javax.swing.JComponent.AccessibleJComponent</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Container</h3>
-<code>java.awt.Container.AccessibleAWTContainer</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Nested classes/interfaces inherited from class&nbsp;java.awt.Component</h3>
-<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
-</ul>
-</li>
-</ul>
-<!-- =========== FIELD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="field.summary">
-<!--   -->
-</a>
-<h3>Field Summary</h3>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Fields inherited from class&nbsp;java.awt.Component</h3>
-<code>accessibleContext, BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
-<!--   -->
-</a>
-<h3>Fields inherited from interface&nbsp;java.awt.image.ImageObserver</h3>
-<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
-</ul>
-</li>
-</ul>
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
-<!--   -->
-</a>
-<h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
-<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colOne" scope="col">Constructor and Description</th>
-</tr>
-<tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#Puissance4Panel-fr.iutfbleau.projetAgile.View.Grille-">Puissance4Panel</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a>&nbsp;grille)</code>&nbsp;</td>
-</tr>
-</table>
-</li>
-</ul>
-<!-- ========== METHOD SUMMARY =========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.summary">
-<!--   -->
-</a>
-<h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
-<tr>
-<th class="colFirst" scope="col">Modifier and Type</th>
-<th class="colLast" scope="col">Method and Description</th>
-</tr>
-<tr id="i0" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#addPlayerPiece-int-int-int-">addPlayerPiece</a></span>(int&nbsp;column,
-              int&nbsp;row,
-              int&nbsp;player)</code>&nbsp;</td>
-</tr>
-<tr id="i1" class="rowColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#addResetListener-fr.iutfbleau.projetAgile.Controller.ResetGame-">addResetListener</a></span>(<a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a>&nbsp;l)</code>&nbsp;</td>
-</tr>
-<tr id="i2" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#changeLabel-int-">changeLabel</a></span>(int&nbsp;joueur)</code>&nbsp;</td>
-</tr>
-<tr id="i3" class="rowColor">
-<td class="colFirst"><code><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#getGrille--">getGrille</a></span>()</code>&nbsp;</td>
-</tr>
-<tr id="i4" class="altColor">
-<td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html#init--">init</a></span>()</code>&nbsp;</td>
-</tr>
-</table>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JPanel">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JPanel</h3>
-<code>getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JComponent">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;javax.swing.JComponent</h3>
-<code>addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Container</h3>
-<code>add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.awt.Component</h3>
-<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
-</ul>
-<ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
-<!--   -->
-</a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="details">
-<ul class="blockList">
-<li class="blockList">
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-<ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
-<!--   -->
-</a>
-<h3>Constructor Detail</h3>
-<a name="Puissance4Panel-fr.iutfbleau.projetAgile.View.Grille-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>Puissance4Panel</h4>
-<pre>public&nbsp;Puissance4Panel(<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a>&nbsp;grille)</pre>
-</li>
-</ul>
-</li>
-</ul>
-<!-- ============ METHOD DETAIL ========== -->
-<ul class="blockList">
-<li class="blockList"><a name="method.detail">
-<!--   -->
-</a>
-<h3>Method Detail</h3>
-<a name="init--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>init</h4>
-<pre>public&nbsp;void&nbsp;init()</pre>
-</li>
-</ul>
-<a name="getGrille--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getGrille</h4>
-<pre>public&nbsp;<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a>&nbsp;getGrille()</pre>
-</li>
-</ul>
-<a name="addResetListener-fr.iutfbleau.projetAgile.Controller.ResetGame-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>addResetListener</h4>
-<pre>public&nbsp;void&nbsp;addResetListener(<a href="../../../../fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a>&nbsp;l)</pre>
-</li>
-</ul>
-<a name="changeLabel-int-">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>changeLabel</h4>
-<pre>public&nbsp;void&nbsp;changeLabel(int&nbsp;joueur)</pre>
-</li>
-</ul>
-<a name="addPlayerPiece-int-int-int-">
-<!--   -->
-</a>
-<ul class="blockListLast">
-<li class="blockList">
-<h4>addPlayerPiece</h4>
-<pre>public&nbsp;void&nbsp;addPlayerPiece(int&nbsp;column,
-                           int&nbsp;row,
-                           int&nbsp;player)</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<!-- ========= END OF CLASS DATA ========= -->
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li class="navBarCell1Rev">Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li>Next&nbsp;Class</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/Puissance4Panel.html" target="_top">Frames</a></li>
-<li><a href="Puissance4Panel.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<div>
-<ul class="subNavList">
-<li>Summary:&nbsp;</li>
-<li><a href="#nested.classes.inherited.from.class.javax.swing.JPanel">Nested</a>&nbsp;|&nbsp;</li>
-<li><a href="#fields.inherited.from.class.javax.swing.JComponent">Field</a>&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
-</ul>
-<ul class="subNavList">
-<li>Detail:&nbsp;</li>
-<li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
-</ul>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-frame.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-frame.html
deleted file mode 100644
index 53d46ba..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.View</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<h1 class="bar"><a href="../../../../fr/iutfbleau/projetAgile/View/package-summary.html" target="classFrame">fr.iutfbleau.projetAgile.View</a></h1>
-<div class="indexContainer">
-<h2 title="Classes">Classes</h2>
-<ul title="Classes">
-<li><a href="BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">BoutonsMenu</a></li>
-<li><a href="Grille.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Grille</a></li>
-<li><a href="Menu.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Menu</a></li>
-<li><a href="Pion.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Pion</a></li>
-<li><a href="Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View" target="classFrame">Puissance4Panel</a></li>
-</ul>
-</div>
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-summary.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-summary.html
deleted file mode 100644
index fc42b19..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-summary.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.View</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.View";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-summary.html">Prev&nbsp;Package</a></li>
-<li>Next&nbsp;Package</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Package" class="title">Package&nbsp;fr.iutfbleau.projetAgile.View</h1>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
-<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Class</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></td>
-<td class="colLast">
-<div class="block">Class Dessinant les boutons du menu</div>
-</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li class="navBarCell1Rev">Package</li>
-<li>Class</li>
-<li><a href="package-tree.html">Tree</a></li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-summary.html">Prev&nbsp;Package</a></li>
-<li>Next&nbsp;Package</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/package-summary.html" target="_top">Frames</a></li>
-<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-tree.html b/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-tree.html
deleted file mode 100644
index 52380cf..0000000
--- a/projetAgile/doc/fr/iutfbleau/projetAgile/View/package-tree.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>fr.iutfbleau.projetAgile.View Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../../script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="fr.iutfbleau.projetAgile.View Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-tree.html">Prev</a></li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For Package fr.iutfbleau.projetAgile.View</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="../../../../overview-tree.html">All Packages</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
-<ul>
-<li type="circle">java.awt.Container
-<ul>
-<li type="circle">javax.swing.JComponent (implements java.io.Serializable)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="../../../../fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">BoutonsMenu</span></a></li>
-<li type="circle">javax.swing.JPanel (implements javax.accessibility.Accessible)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="../../../../fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Grille</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="../../../../fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Puissance4Panel</span></a></li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="../../../../fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Pion</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="../../../../fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Menu</span></a></li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="../../../../overview-summary.html">Overview</a></li>
-<li><a href="package-summary.html">Package</a></li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../../index-all.html">Index</a></li>
-<li><a href="../../../../help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li><a href="../../../../fr/iutfbleau/projetAgile/Utils/package-tree.html">Prev</a></li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="../../../../index.html?fr/iutfbleau/projetAgile/View/package-tree.html" target="_top">Frames</a></li>
-<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/help-doc.html b/projetAgile/doc/help-doc.html
deleted file mode 100644
index 67da6ff..0000000
--- a/projetAgile/doc/help-doc.html
+++ /dev/null
@@ -1,223 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>API Help</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li class="navBarCell1Rev">Help</li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
-<li><a href="help-doc.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">How This API Document Is Organized</h1>
-<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div>
-</div>
-<div class="contentContainer">
-<ul class="blockList">
-<li class="blockList">
-<h2>Overview</h2>
-<p>The <a href="overview-summary.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each.  This page can also contain an overall description of the set of packages.</p>
-</li>
-<li class="blockList">
-<h2>Package</h2>
-<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:</p>
-<ul>
-<li>Interfaces (italic)</li>
-<li>Classes</li>
-<li>Enums</li>
-<li>Exceptions</li>
-<li>Errors</li>
-<li>Annotation Types</li>
-</ul>
-</li>
-<li class="blockList">
-<h2>Class/Interface</h2>
-<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p>
-<ul>
-<li>Class inheritance diagram</li>
-<li>Direct Subclasses</li>
-<li>All Known Subinterfaces</li>
-<li>All Known Implementing Classes</li>
-<li>Class/interface declaration</li>
-<li>Class/interface description</li>
-</ul>
-<ul>
-<li>Nested Class Summary</li>
-<li>Field Summary</li>
-<li>Constructor Summary</li>
-<li>Method Summary</li>
-</ul>
-<ul>
-<li>Field Detail</li>
-<li>Constructor Detail</li>
-<li>Method Detail</li>
-</ul>
-<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
-</li>
-<li class="blockList">
-<h2>Annotation Type</h2>
-<p>Each annotation type has its own separate page with the following sections:</p>
-<ul>
-<li>Annotation Type declaration</li>
-<li>Annotation Type description</li>
-<li>Required Element Summary</li>
-<li>Optional Element Summary</li>
-<li>Element Detail</li>
-</ul>
-</li>
-<li class="blockList">
-<h2>Enum</h2>
-<p>Each enum has its own separate page with the following sections:</p>
-<ul>
-<li>Enum declaration</li>
-<li>Enum description</li>
-<li>Enum Constant Summary</li>
-<li>Enum Constant Detail</li>
-</ul>
-</li>
-<li class="blockList">
-<h2>Tree (Class Hierarchy)</h2>
-<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.</p>
-<ul>
-<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li>
-<li>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</li>
-</ul>
-</li>
-<li class="blockList">
-<h2>Deprecated API</h2>
-<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p>
-</li>
-<li class="blockList">
-<h2>Index</h2>
-<p>The <a href="index-all.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
-</li>
-<li class="blockList">
-<h2>Prev/Next</h2>
-<p>These links take you to the next or previous class, interface, package, or related page.</p>
-</li>
-<li class="blockList">
-<h2>Frames/No Frames</h2>
-<p>These links show and hide the HTML frames.  All pages are available with or without frames.</p>
-</li>
-<li class="blockList">
-<h2>All Classes</h2>
-<p>The <a href="allclasses-noframe.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p>
-</li>
-<li class="blockList">
-<h2>Serialized Form</h2>
-<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p>
-</li>
-<li class="blockList">
-<h2>Constant Field Values</h2>
-<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p>
-</li>
-</ul>
-<span class="emphasizedPhrase">This help file applies to API documentation generated using the standard doclet.</span></div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li class="navBarCell1Rev">Help</li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
-<li><a href="help-doc.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/index-all.html b/projetAgile/doc/index-all.html
deleted file mode 100644
index 56b3f3d..0000000
--- a/projetAgile/doc/index-all.html
+++ /dev/null
@@ -1,496 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Index</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li class="navBarCell1Rev">Index</li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
-<li><a href="index-all.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="contentContainer"><a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:V">V</a>&nbsp;<a name="I:A">
-<!--   -->
-</a>
-<h2 class="title">A</h2>
-<dl>
-<dt><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">AbstractGridInitiater</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#AbstractGridInitiater--">AbstractGridInitiater()</a></span> - Constructor for class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed(ActionEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#addGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">addGridListener(GridChangedListener)</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>
-<div class="block">Ajoute le listener donné en argument à la liste des listes</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#addPiece-int-int-">addPiece(int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Grille.html#addPlayerPiece-int-int-int-">addPlayerPiece(int, int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#addPlayerPiece-int-int-int-">addPlayerPiece(int, int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#addResetListener-fr.iutfbleau.projetAgile.Controller.ResetGame-">addResetListener(ResetGame)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:B">
-<!--   -->
-</a>
-<h2 class="title">B</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#BACKGROUND_COLOR">BACKGROUND_COLOR</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">BoutonsMenu</span></a> - Class in <a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></dt>
-<dd>
-<div class="block">Class Dessinant les boutons du menu</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html#BoutonsMenu-java.lang.String-">BoutonsMenu(String)</a></span> - Constructor for class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></dt>
-<dd>
-<div class="block">Constructeur</div>
-</dd>
-</dl>
-<a name="I:C">
-<!--   -->
-</a>
-<h2 class="title">C</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#changeLabel-int-">changeLabel(int)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#COLUMN_COUNT">COLUMN_COUNT</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Constants</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Utils/package-summary.html">fr.iutfbleau.projetAgile.Utils</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#Constants--">Constants()</a></span> - Constructor for class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:D">
-<!--   -->
-</a>
-<h2 class="title">D</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#DRAW_POSITION">DRAW_POSITION</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:E">
-<!--   -->
-</a>
-<h2 class="title">E</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#EMPTY_COLOR">EMPTY_COLOR</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#EMPTY_PLAYER">EMPTY_PLAYER</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:F">
-<!--   -->
-</a>
-<h2 class="title">F</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#fireGridChanged-int-int-int-">fireGridChanged(int, int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>
-<div class="block">Notifie tous les listeners lorsque la grille est modifié</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#firePlayerChanged-int-int-">firePlayerChanged(int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>
-<div class="block">Notifie tous les listeners lorsque le tour du joueur change</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a> - package fr.iutfbleau.projetAgile.Controller</dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a> - package fr.iutfbleau.projetAgile.Event</dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Model/package-summary.html">fr.iutfbleau.projetAgile.Model</a> - package fr.iutfbleau.projetAgile.Model</dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Utils/package-summary.html">fr.iutfbleau.projetAgile.Utils</a> - package fr.iutfbleau.projetAgile.Utils</dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a> - package fr.iutfbleau.projetAgile.View</dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:G">
-<!--   -->
-</a>
-<h2 class="title">G</h2>
-<dl>
-<dt><a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">GameStatus</span></a> - Enum in <a href="fr/iutfbleau/projetAgile/Utils/package-summary.html">fr.iutfbleau.projetAgile.Utils</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html#getColumn--">getColumn()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></dt>
-<dd>
-<div class="block">Retourne la colonne modifié</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#getColumn--">getColumn()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Menu.html#getFrame--">getFrame()</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></dt>
-<dd>
-<div class="block">getter pouvant initialiser la JFrame</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#getGameStatus--">getGameStatus()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#getGridListeners--">getGridListeners()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>
-<div class="block">Retourne un tableau de tous les listeners</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#getGrille--">getGrille()</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html#getNewPlayer--">getNewPlayer()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a></dt>
-<dd>
-<div class="block">Retourne le nouveau joueur</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html#getOldPlayer--">getOldPlayer()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a></dt>
-<dd>
-<div class="block">Retourne l'ancien joueur</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#getPanel--">getPanel()</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html#getPath--">getPath()</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></dt>
-<dd>
-<div class="block">Connaitre le chemin de l'image et donc le type du jeu</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#getPionMaximumSize--">getPionMaximumSize()</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#getPionMinimumSize--">getPionMinimumSize()</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#getPionPreferredSize--">getPionPreferredSize()</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html#getPlayer--">getPlayer()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></dt>
-<dd>
-<div class="block">Retourne le joueur qui a joué</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#getPlayer--">getPlayer()</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#getPlayerTurn--">getPlayerTurn()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html#getRow--">getRow()</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></dt>
-<dd>
-<div class="block">Retourne la ligne modifié</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#getRow--">getRow()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#getTab--">getTab()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">gridChanged(GridEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html#gridChanged-fr.iutfbleau.projetAgile.Event.GridEvent-">gridChanged(GridEvent)</a></span> - Method in interface fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></dt>
-<dd>
-<div class="block">Méthode invoqué lorsque la grille est modifié</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridChangedListener</span></a> - Interface in <a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridEvent</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridEvent.html#GridEvent-int-int-int-">GridEvent(int, int, int)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event">GridEvent</a></dt>
-<dd>
-<div class="block">Evenement représentant le changement dans la grille</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Grille</span></a> - Class in <a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Grille.html#Grille--">Grille()</a></span> - Constructor for class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model"><span class="typeNameLink">GrilleModel</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Model/package-summary.html">fr.iutfbleau.projetAgile.Model</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#GrilleModel--">GrilleModel()</a></span> - Constructor for class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">GrilleMouseListener</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#GrilleMouseListener-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">GrilleMouseListener(Puissance4Controller)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:H">
-<!--   -->
-</a>
-<h2 class="title">H</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Grille.html#hover-int-">hover(int)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#hoverGrille-int-">hoverGrille(int)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:I">
-<!--   -->
-</a>
-<h2 class="title">I</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#init--">init()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Grille.html#init-int:A:A-">init(int[][])</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#init--">init()</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Menu.html#InitMenu--">InitMenu()</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></dt>
-<dd>
-<div class="block">methode static pour avoir le JPanel Affichant le Menu</div>
-</dd>
-</dl>
-<a name="I:L">
-<!--   -->
-</a>
-<h2 class="title">L</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#listeners">listeners</a></span> - Variable in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:M">
-<!--   -->
-</a>
-<h2 class="title">M</h2>
-<dl>
-<dt><a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Menu</span></a> - Class in <a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Menu.html#Menu--">Menu()</a></span> - Constructor for class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ModelEventListener</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#ModelEventListener-fr.iutfbleau.projetAgile.View.Puissance4Panel-">ModelEventListener(Puissance4Panel)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseClicked-java.awt.event.MouseEvent-">mouseClicked(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseEntered-java.awt.event.MouseEvent-">mouseEntered(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mouseExited-java.awt.event.MouseEvent-">mouseExited(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseExited-java.awt.event.MouseEvent-">mouseExited(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mouseMoved-java.awt.event.MouseEvent-">mouseMoved(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html#mousePressed-java.awt.event.MouseEvent-">mousePressed(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller">GrilleMouseListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mousePressed-java.awt.event.MouseEvent-">mousePressed(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#mouseReleased-java.awt.event.MouseEvent-">mouseReleased(MouseEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:O">
-<!--   -->
-</a>
-<h2 class="title">O</h2>
-<dl>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ObservateurMenuSouris</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></dt>
-<dd>
-<div class="block">Observateur des Boutons du Menu</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html#ObservateurMenuSouris--">ObservateurMenuSouris()</a></span> - Constructor for class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller">ObservateurMenuSouris</a></dt>
-<dd>
-<div class="block">Constructeur</div>
-</dd>
-</dl>
-<a name="I:P">
-<!--   -->
-</a>
-<h2 class="title">P</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html#paintComponent-java.awt.Graphics-">paintComponent(Graphics)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#paintComponent-java.awt.Graphics-">paintComponent(Graphics)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PIECE_MARGIN">PIECE_MARGIN</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Pion</span></a> - Class in <a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#Pion-int-">Pion(int)</a></span> - Constructor for class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_ONE">PLAYER_ONE</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_ONE_COLOR">PLAYER_ONE_COLOR</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_TWO">PLAYER_TWO</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#PLAYER_TWO_COLOR">PLAYER_TWO_COLOR</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">playerChanged(PlayerEvent)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller">ModelEventListener</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html#playerChanged-fr.iutfbleau.projetAgile.Event.PlayerEvent-">playerChanged(PlayerEvent)</a></span> - Method in interface fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a></dt>
-<dd>
-<div class="block">Méthode invoqué lorsque le tour du joueur est modifié</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">PlayerEvent</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html#PlayerEvent-int-int-">PlayerEvent(int, int)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event">PlayerEvent</a></dt>
-<dd>
-<div class="block">Evenement représentant le changement de tour des joueurs</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Puissance4Controller</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#Puissance4Controller-fr.iutfbleau.projetAgile.View.Grille-fr.iutfbleau.projetAgile.Model.GrilleModel-">Puissance4Controller(Grille, GrilleModel)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></dt>
-<dd>
-<div class="block">Controleur du jeu, il initialise la vue, les listeners, etc..</div>
-</dd>
-<dt><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Puissance4Panel</span></a> - Class in <a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html#Puissance4Panel-fr.iutfbleau.projetAgile.View.Grille-">Puissance4Panel(Grille)</a></span> - Constructor for class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">Puissance4Panel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Menu.html#PUISSANCE_4">PUISSANCE_4</a></span> - Static variable in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:R">
-<!--   -->
-</a>
-<h2 class="title">R</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html#removeGridListener-fr.iutfbleau.projetAgile.Event.GridChangedListener-">removeGridListener(GridChangedListener)</a></span> - Method in class fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event">AbstractGridInitiater</a></dt>
-<dd>
-<div class="block">Supprime le listener donné en argument de la liste des listeners</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#reset--">reset()</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#reset--">reset()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Grille.html#reset--">reset()</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a></dt>
-<dd>&nbsp;</dd>
-<dt><a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ResetGame</span></a> - Class in <a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html#ResetGame-fr.iutfbleau.projetAgile.Controller.Puissance4Controller-">ResetGame(Puissance4Controller)</a></span> - Constructor for class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller">ResetGame</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/Constants.html#ROW_COUNT">ROW_COUNT</a></span> - Static variable in class fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils">Constants</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:S">
-<!--   -->
-</a>
-<h2 class="title">S</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#setHover-boolean-">setHover(boolean)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#setPartyStatus-fr.iutfbleau.projetAgile.Utils.GameStatus-">setPartyStatus(GameStatus)</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Pion.html#setPlayer-int-">setPlayer(int)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html#setSurvol-boolean-">setSurvol(boolean)</a></span> - Method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">BoutonsMenu</a></dt>
-<dd>
-<div class="block">savoir si le bouton est survoler</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/View/Menu.html#show-java.lang.String-">show(String)</a></span> - Static method in class fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View">Menu</a></dt>
-<dd>
-<div class="block">Methode pour changer le cardLayout</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#switchPlayer--">switchPlayer()</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-</dl>
-<a name="I:V">
-<!--   -->
-</a>
-<h2 class="title">V</h2>
-<dl>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html#valueOf-java.lang.String-">valueOf(String)</a></span> - Static method in enum fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></dt>
-<dd>
-<div class="block">Returns the enum constant of this type with the specified name.</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html#values--">values()</a></span> - Static method in enum fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils">GameStatus</a></dt>
-<dd>
-<div class="block">Returns an array containing the constants of this enum type, in
-the order they are declared.</div>
-</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html#verifyColumn-int-">verifyColumn(int)</a></span> - Method in class fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller">Puissance4Controller</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#verifyColumn-int-">verifyColumn(int)</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html#verifyWin-int-int-">verifyWin(int, int)</a></span> - Method in class fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model">GrilleModel</a></dt>
-<dd>
-<div class="block">Vérifie si le jeton qui vient d'être joué termine la partie</div>
-</dd>
-</dl>
-<a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:V">V</a>&nbsp;</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li class="navBarCell1Rev">Index</li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
-<li><a href="index-all.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/index.html b/projetAgile/doc/index.html
deleted file mode 100644
index 2dadcc5..0000000
--- a/projetAgile/doc/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Generated Documentation (Untitled)</title>
-<script type="text/javascript">
-    tmpTargetPage = "" + window.location.search;
-    if (tmpTargetPage != "" && tmpTargetPage != "undefined")
-        tmpTargetPage = tmpTargetPage.substring(1);
-    if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && !validURL(tmpTargetPage)))
-        tmpTargetPage = "undefined";
-    targetPage = tmpTargetPage;
-    function validURL(url) {
-        try {
-            url = decodeURIComponent(url);
-        }
-        catch (error) {
-            return false;
-        }
-        var pos = url.indexOf(".html");
-        if (pos == -1 || pos != url.length - 5)
-            return false;
-        var allowNumber = false;
-        var allowSep = false;
-        var seenDot = false;
-        for (var i = 0; i < url.length - 5; i++) {
-            var ch = url.charAt(i);
-            if ('a' <= ch && ch <= 'z' ||
-                    'A' <= ch && ch <= 'Z' ||
-                    ch == '$' ||
-                    ch == '_' ||
-                    ch.charCodeAt(0) > 127) {
-                allowNumber = true;
-                allowSep = true;
-            } else if ('0' <= ch && ch <= '9'
-                    || ch == '-') {
-                if (!allowNumber)
-                     return false;
-            } else if (ch == '/' || ch == '.') {
-                if (!allowSep)
-                    return false;
-                allowNumber = false;
-                allowSep = false;
-                if (ch == '.')
-                     seenDot = true;
-                if (ch == '/' && seenDot)
-                     return false;
-            } else {
-                return false;
-            }
-        }
-        return true;
-    }
-    function loadFrames() {
-        if (targetPage != "" && targetPage != "undefined")
-             top.classFrame.location = top.targetPage;
-    }
-</script>
-</head>
-<frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
-<frameset rows="30%,70%" title="Left frames" onload="top.loadFrames()">
-<frame src="overview-frame.html" name="packageListFrame" title="All Packages">
-<frame src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
-</frameset>
-<frame src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
-<noframes>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<h2>Frame Alert</h2>
-<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p>
-</noframes>
-</frameset>
-</html>
diff --git a/projetAgile/doc/overview-frame.html b/projetAgile/doc/overview-frame.html
deleted file mode 100644
index b4643ad..0000000
--- a/projetAgile/doc/overview-frame.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Overview List</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<div class="indexHeader"><span><a href="allclasses-frame.html" target="packageFrame">All&nbsp;Classes</a></span></div>
-<div class="indexContainer">
-<h2 title="Packages">Packages</h2>
-<ul title="Packages">
-<li><a href="fr/iutfbleau/projetAgile/Controller/package-frame.html" target="packageFrame">fr.iutfbleau.projetAgile.Controller</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Event/package-frame.html" target="packageFrame">fr.iutfbleau.projetAgile.Event</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Model/package-frame.html" target="packageFrame">fr.iutfbleau.projetAgile.Model</a></li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/package-frame.html" target="packageFrame">fr.iutfbleau.projetAgile.Utils</a></li>
-<li><a href="fr/iutfbleau/projetAgile/View/package-frame.html" target="packageFrame">fr.iutfbleau.projetAgile.View</a></li>
-</ul>
-</div>
-<p>&nbsp;</p>
-</body>
-</html>
diff --git a/projetAgile/doc/overview-summary.html b/projetAgile/doc/overview-summary.html
deleted file mode 100644
index d7bf492..0000000
--- a/projetAgile/doc/overview-summary.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Overview</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Overview";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li class="navBarCell1Rev">Overview</li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?overview-summary.html" target="_top">Frames</a></li>
-<li><a href="overview-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="contentContainer">
-<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages, and an explanation">
-<caption><span>Packages</span><span class="tabEnd">&nbsp;</span></caption>
-<tr>
-<th class="colFirst" scope="col">Package</th>
-<th class="colLast" scope="col">Description</th>
-</tr>
-<tbody>
-<tr class="altColor">
-<td class="colFirst"><a href="fr/iutfbleau/projetAgile/Controller/package-summary.html">fr.iutfbleau.projetAgile.Controller</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="fr/iutfbleau/projetAgile/Event/package-summary.html">fr.iutfbleau.projetAgile.Event</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="fr/iutfbleau/projetAgile/Model/package-summary.html">fr.iutfbleau.projetAgile.Model</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor">
-<td class="colFirst"><a href="fr/iutfbleau/projetAgile/Utils/package-summary.html">fr.iutfbleau.projetAgile.Utils</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor">
-<td class="colFirst"><a href="fr/iutfbleau/projetAgile/View/package-summary.html">fr.iutfbleau.projetAgile.View</a></td>
-<td class="colLast">&nbsp;</td>
-</tr>
-</tbody>
-</table>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li class="navBarCell1Rev">Overview</li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?overview-summary.html" target="_top">Frames</a></li>
-<li><a href="overview-summary.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/overview-tree.html b/projetAgile/doc/overview-tree.html
deleted file mode 100644
index d10f2d8..0000000
--- a/projetAgile/doc/overview-tree.html
+++ /dev/null
@@ -1,200 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Class Hierarchy</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Class Hierarchy";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li>
-<li><a href="overview-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 class="title">Hierarchy For All Packages</h1>
-<span class="packageHierarchyLabel">Package Hierarchies:</span>
-<ul class="horizontal">
-<li><a href="fr/iutfbleau/projetAgile/Controller/package-tree.html">fr.iutfbleau.projetAgile.Controller</a>, </li>
-<li><a href="fr/iutfbleau/projetAgile/Event/package-tree.html">fr.iutfbleau.projetAgile.Event</a>, </li>
-<li><a href="fr/iutfbleau/projetAgile/Model/package-tree.html">fr.iutfbleau.projetAgile.Model</a>, </li>
-<li><a href="fr/iutfbleau/projetAgile/Utils/package-tree.html">fr.iutfbleau.projetAgile.Utils</a>, </li>
-<li><a href="fr/iutfbleau/projetAgile/View/package-tree.html">fr.iutfbleau.projetAgile.View</a></li>
-</ul>
-</div>
-<div class="contentContainer">
-<h2 title="Class Hierarchy">Class Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">AbstractGridInitiater</span></a>
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Model.<a href="fr/iutfbleau/projetAgile/Model/GrilleModel.html" title="class in fr.iutfbleau.projetAgile.Model"><span class="typeNameLink">GrilleModel</span></a></li>
-</ul>
-</li>
-<li type="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
-<ul>
-<li type="circle">java.awt.Container
-<ul>
-<li type="circle">javax.swing.JComponent (implements java.io.Serializable)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">BoutonsMenu</span></a></li>
-<li type="circle">javax.swing.JPanel (implements javax.accessibility.Accessible)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Grille</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Puissance4Panel</span></a></li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Pion</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/Constants.html" title="class in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">Constants</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridEvent</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.View.<a href="fr/iutfbleau/projetAgile/View/Menu.html" title="class in fr.iutfbleau.projetAgile.View"><span class="typeNameLink">Menu</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ModelEventListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ModelEventListener</span></a> (implements fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event">GridChangedListener</a>)</li>
-<li type="circle">java.awt.event.MouseAdapter (implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener, java.awt.event.MouseWheelListener)
-<ul>
-<li type="circle">javax.swing.event.MouseInputAdapter (implements javax.swing.event.MouseInputListener)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">GrilleMouseListener</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ObservateurMenuSouris</span></a> (implements java.awt.event.MouseListener)</li>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/PlayerEvent.html" title="class in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">PlayerEvent</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/Puissance4Controller.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">Puissance4Controller</span></a></li>
-<li type="circle">fr.iutfbleau.projetAgile.Controller.<a href="fr/iutfbleau/projetAgile/Controller/ResetGame.html" title="class in fr.iutfbleau.projetAgile.Controller"><span class="typeNameLink">ResetGame</span></a> (implements java.awt.event.ActionListener)</li>
-</ul>
-</li>
-</ul>
-<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
-<ul>
-<li type="circle">java.util.EventListener
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Event.<a href="fr/iutfbleau/projetAgile/Event/GridChangedListener.html" title="interface in fr.iutfbleau.projetAgile.Event"><span class="typeNameLink">GridChangedListener</span></a></li>
-</ul>
-</li>
-</ul>
-<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
-<ul>
-<li type="circle">java.lang.Object
-<ul>
-<li type="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
-<ul>
-<li type="circle">fr.iutfbleau.projetAgile.Utils.<a href="fr/iutfbleau/projetAgile/Utils/GameStatus.html" title="enum in fr.iutfbleau.projetAgile.Utils"><span class="typeNameLink">GameStatus</span></a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li class="navBarCell1Rev">Tree</li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li>
-<li><a href="overview-tree.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/package-list b/projetAgile/doc/package-list
deleted file mode 100644
index db55d6e..0000000
--- a/projetAgile/doc/package-list
+++ /dev/null
@@ -1,5 +0,0 @@
-fr.iutfbleau.projetAgile.Controller
-fr.iutfbleau.projetAgile.Event
-fr.iutfbleau.projetAgile.Model
-fr.iutfbleau.projetAgile.Utils
-fr.iutfbleau.projetAgile.View
diff --git a/projetAgile/doc/script.js b/projetAgile/doc/script.js
deleted file mode 100644
index b346356..0000000
--- a/projetAgile/doc/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
-    count = 0;
-    for (var key in methods) {
-        var row = document.getElementById(key);
-        if ((methods[key] &  type) != 0) {
-            row.style.display = '';
-            row.className = (count++ % 2) ? rowColor : altColor;
-        }
-        else
-            row.style.display = 'none';
-    }
-    updateTabs(type);
-}
-
-function updateTabs(type)
-{
-    for (var value in tabs) {
-        var sNode = document.getElementById(tabs[value][0]);
-        var spanNode = sNode.firstChild;
-        if (value == type) {
-            sNode.className = activeTableTab;
-            spanNode.innerHTML = tabs[value][1];
-        }
-        else {
-            sNode.className = tableTab;
-            spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
-        }
-    }
-}
diff --git a/projetAgile/doc/serialized-form.html b/projetAgile/doc/serialized-form.html
deleted file mode 100644
index 7760979..0000000
--- a/projetAgile/doc/serialized-form.html
+++ /dev/null
@@ -1,226 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!-- NewPage -->
-<html lang="fr">
-<head>
-<!-- Generated by javadoc (1.8.0_342) on Thu Oct 20 19:26:15 CEST 2022 -->
-<title>Serialized Form</title>
-<meta name="date" content="2022-10-20">
-<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
-</head>
-<body>
-<script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Serialized Form";
-        }
-    }
-    catch(err) {
-    }
-//-->
-</script>
-<noscript>
-<div>JavaScript is disabled on your browser.</div>
-</noscript>
-<!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
-<li><a href="serialized-form.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_top");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.top">
-<!--   -->
-</a></div>
-<!-- ========= END OF TOP NAVBAR ========= -->
-<div class="header">
-<h1 title="Serialized Form" class="title">Serialized Form</h1>
-</div>
-<div class="serializedFormContainer">
-<ul class="blockList">
-<li class="blockList">
-<h2 title="Package">Package&nbsp;fr.iutfbleau.projetAgile.View</h2>
-<ul class="blockList">
-<li class="blockList"><a name="fr.iutfbleau.projetAgile.View.BoutonsMenu">
-<!--   -->
-</a>
-<h3>Class <a href="fr/iutfbleau/projetAgile/View/BoutonsMenu.html" title="class in fr.iutfbleau.projetAgile.View">fr.iutfbleau.projetAgile.View.BoutonsMenu</a> extends javax.swing.JComponent implements Serializable</h3>
-<ul class="blockList">
-<li class="blockList">
-<h3>Serialized Fields</h3>
-<ul class="blockList">
-<li class="blockList">
-<h4>path</h4>
-<pre>java.lang.String path</pre>
-</li>
-<li class="blockList">
-<h4>survol</h4>
-<pre>boolean survol</pre>
-</li>
-<li class="blockListLast">
-<h4>img</h4>
-<pre>java.awt.Image img</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-<li class="blockList"><a name="fr.iutfbleau.projetAgile.View.Grille">
-<!--   -->
-</a>
-<h3>Class <a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">fr.iutfbleau.projetAgile.View.Grille</a> extends javax.swing.JPanel implements Serializable</h3>
-<ul class="blockList">
-<li class="blockList">
-<h3>Serialized Fields</h3>
-<ul class="blockList">
-<li class="blockList">
-<h4>grille</h4>
-<pre><a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">Pion</a>[][] grille</pre>
-</li>
-<li class="blockList">
-<h4>column</h4>
-<pre>int column</pre>
-</li>
-<li class="blockListLast">
-<h4>row</h4>
-<pre>int row</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-<li class="blockList"><a name="fr.iutfbleau.projetAgile.View.Pion">
-<!--   -->
-</a>
-<h3>Class <a href="fr/iutfbleau/projetAgile/View/Pion.html" title="class in fr.iutfbleau.projetAgile.View">fr.iutfbleau.projetAgile.View.Pion</a> extends javax.swing.JComponent implements Serializable</h3>
-<ul class="blockList">
-<li class="blockList">
-<h3>Serialized Fields</h3>
-<ul class="blockList">
-<li class="blockList">
-<h4>player</h4>
-<pre>int player</pre>
-</li>
-<li class="blockListLast">
-<h4>hover</h4>
-<pre>boolean hover</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-<li class="blockList"><a name="fr.iutfbleau.projetAgile.View.Puissance4Panel">
-<!--   -->
-</a>
-<h3>Class <a href="fr/iutfbleau/projetAgile/View/Puissance4Panel.html" title="class in fr.iutfbleau.projetAgile.View">fr.iutfbleau.projetAgile.View.Puissance4Panel</a> extends javax.swing.JPanel implements Serializable</h3>
-<ul class="blockList">
-<li class="blockList">
-<h3>Serialized Fields</h3>
-<ul class="blockList">
-<li class="blockList">
-<h4>reset</h4>
-<pre>javax.swing.JButton reset</pre>
-</li>
-<li class="blockList">
-<h4>menu</h4>
-<pre>javax.swing.JButton menu</pre>
-</li>
-<li class="blockList">
-<h4>label</h4>
-<pre>javax.swing.JLabel label</pre>
-</li>
-<li class="blockListLast">
-<h4>grille</h4>
-<pre><a href="fr/iutfbleau/projetAgile/View/Grille.html" title="class in fr.iutfbleau.projetAgile.View">Grille</a> grille</pre>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
-<!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
-<!--   -->
-</a>
-<ul class="navList" title="Navigation">
-<li><a href="overview-summary.html">Overview</a></li>
-<li>Package</li>
-<li>Class</li>
-<li><a href="overview-tree.html">Tree</a></li>
-<li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-all.html">Index</a></li>
-<li><a href="help-doc.html">Help</a></li>
-</ul>
-</div>
-<div class="subNav">
-<ul class="navList">
-<li>Prev</li>
-<li>Next</li>
-</ul>
-<ul class="navList">
-<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
-<li><a href="serialized-form.html" target="_top">No&nbsp;Frames</a></li>
-</ul>
-<ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
-</ul>
-<div>
-<script type="text/javascript"><!--
-  allClassesLink = document.getElementById("allclasses_navbar_bottom");
-  if(window==top) {
-    allClassesLink.style.display = "block";
-  }
-  else {
-    allClassesLink.style.display = "none";
-  }
-  //-->
-</script>
-</div>
-<a name="skip.navbar.bottom">
-<!--   -->
-</a></div>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-</body>
-</html>
diff --git a/projetAgile/doc/stylesheet.css b/projetAgile/doc/stylesheet.css
deleted file mode 100644
index 98055b2..0000000
--- a/projetAgile/doc/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
-    background-color:#ffffff;
-    color:#353833;
-    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
-    font-size:14px;
-    margin:0;
-}
-a:link, a:visited {
-    text-decoration:none;
-    color:#4A6782;
-}
-a:hover, a:focus {
-    text-decoration:none;
-    color:#bb7a2a;
-}
-a:active {
-    text-decoration:none;
-    color:#4A6782;
-}
-a[name] {
-    color:#353833;
-}
-a[name]:hover {
-    text-decoration:none;
-    color:#353833;
-}
-pre {
-    font-family:'DejaVu Sans Mono', monospace;
-    font-size:14px;
-}
-h1 {
-    font-size:20px;
-}
-h2 {
-    font-size:18px;
-}
-h3 {
-    font-size:16px;
-    font-style:italic;
-}
-h4 {
-    font-size:13px;
-}
-h5 {
-    font-size:12px;
-}
-h6 {
-    font-size:11px;
-}
-ul {
-    list-style-type:disc;
-}
-code, tt {
-    font-family:'DejaVu Sans Mono', monospace;
-    font-size:14px;
-    padding-top:4px;
-    margin-top:8px;
-    line-height:1.4em;
-}
-dt code {
-    font-family:'DejaVu Sans Mono', monospace;
-    font-size:14px;
-    padding-top:4px;
-}
-table tr td dt code {
-    font-family:'DejaVu Sans Mono', monospace;
-    font-size:14px;
-    vertical-align:top;
-    padding-top:4px;
-}
-sup {
-    font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
-    clear:both;
-    height:0px;
-    overflow:hidden;
-}
-.aboutLanguage {
-    float:right;
-    padding:0px 21px;
-    font-size:11px;
-    z-index:200;
-    margin-top:-9px;
-}
-.legalCopy {
-    margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
-    color:#FFFFFF;
-    text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
-    color:#bb7a2a;
-}
-.tab {
-    background-color:#0066FF;
-    color:#ffffff;
-    padding:8px;
-    width:5em;
-    font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
-    background-color:#4D7A97;
-    color:#FFFFFF;
-    padding:.8em .5em .4em .8em;
-    height:auto;/*height:1.8em;*/
-    font-size:11px;
-    margin:0;
-}
-.topNav {
-    background-color:#4D7A97;
-    color:#FFFFFF;
-    float:left;
-    padding:0;
-    width:100%;
-    clear:right;
-    height:2.8em;
-    padding-top:10px;
-    overflow:hidden;
-    font-size:12px; 
-}
-.bottomNav {
-    margin-top:10px;
-    background-color:#4D7A97;
-    color:#FFFFFF;
-    float:left;
-    padding:0;
-    width:100%;
-    clear:right;
-    height:2.8em;
-    padding-top:10px;
-    overflow:hidden;
-    font-size:12px;
-}
-.subNav {
-    background-color:#dee3e9;
-    float:left;
-    width:100%;
-    overflow:hidden;
-    font-size:12px;
-}
-.subNav div {
-    clear:left;
-    float:left;
-    padding:0 0 5px 6px;
-    text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
-    float:left;
-    margin:0 25px 0 0;
-    padding:0;
-}
-ul.navList li{
-    list-style:none;
-    float:left;
-    padding: 5px 6px;
-    text-transform:uppercase;
-}
-ul.subNavList li{
-    list-style:none;
-    float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
-    color:#FFFFFF;
-    text-decoration:none;
-    text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
-    text-decoration:none;
-    color:#bb7a2a;
-    text-transform:uppercase;
-}
-.navBarCell1Rev {
-    background-color:#F8981D;
-    color:#253441;
-    margin: auto 5px;
-}
-.skipNav {
-    position:absolute;
-    top:auto;
-    left:-9999px;
-    overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
-    clear:both;
-    margin:0 20px;
-    padding:5px 0 0 0;
-}
-.indexHeader {
-    margin:10px;
-    position:relative;
-}
-.indexHeader span{
-    margin-right:15px;
-}
-.indexHeader h1 {
-    font-size:13px;
-}
-.title {
-    color:#2c4557;
-    margin:10px 0;
-}
-.subTitle {
-    margin:5px 0 0 0;
-}
-.header ul {
-    margin:0 0 15px 0;
-    padding:0;
-}
-.footer ul {
-    margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
-    list-style:none;
-    font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
-    background-color:#dee3e9;
-    border:1px solid #d0d9e0;
-    margin:0 0 6px -8px;
-    padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
-    background-color:#dee3e9;
-    border:1px solid #d0d9e0;
-    margin:0 0 6px -8px;
-    padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
-    padding:0;
-    margin:15px 0;
-}
-ul.blockList li.blockList h2 {
-    padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
-    clear:both;
-    padding:10px 20px;
-    position:relative;
-}
-.indexContainer {
-    margin:10px;
-    position:relative;
-    font-size:12px;
-}
-.indexContainer h2 {
-    font-size:13px;
-    padding:0 0 3px 0;
-}
-.indexContainer ul {
-    margin:0;
-    padding:0;
-}
-.indexContainer ul li {
-    list-style:none;
-    padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
-    font-size:12px;
-    font-weight:bold;
-    margin:10px 0 0 0;
-    color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
-    margin:5px 0 10px 0px;
-    font-size:14px;
-    font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
-    margin-left:1px;
-    font-size:1.1em;
-    display:inline;
-    font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
-    margin:0 0 0 1px;
-    font-size:1.1em;
-    display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
-    display:inline;
-    font-size:0.9em;
-}
-ul.inheritance {
-    margin:0;
-    padding:0;
-}
-ul.inheritance li {
-    display:inline;
-    list-style:none;
-}
-ul.inheritance li ul.inheritance {
-    margin-left:15px;
-    padding-left:15px;
-    padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
-    margin:10px 0 10px 0;
-    padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
-    list-style:none;
-    margin-bottom:15px;
-    line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
-    padding:0px 20px 5px 10px;
-    border:1px solid #ededed; 
-    background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
-    padding:0 0 5px 8px;
-    background-color:#ffffff;
-    border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
-    margin-left:0;
-    padding-left:0;
-    padding-bottom:15px;
-    border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
-    list-style:none;
-    border-bottom:none;
-    padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
-    margin-top:0;
-    margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
-    width:100%;
-    border-left:1px solid #EEE; 
-    border-right:1px solid #EEE; 
-    border-bottom:1px solid #EEE; 
-}
-.overviewSummary, .memberSummary  {
-    padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
-    position:relative;
-    text-align:left;
-    background-repeat:no-repeat;
-    color:#253441;
-    font-weight:bold;
-    clear:none;
-    overflow:hidden;
-    padding:0px;
-    padding-top:10px;
-    padding-left:1px;
-    margin:0px;
-    white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
-    color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
-    white-space:nowrap;
-    padding-top:5px;
-    padding-left:12px;
-    padding-right:12px;
-    padding-bottom:7px;
-    display:inline-block;
-    float:left;
-    background-color:#F8981D;
-    border: none;
-    height:16px;
-}
-.memberSummary caption span.activeTableTab span {
-    white-space:nowrap;
-    padding-top:5px;
-    padding-left:12px;
-    padding-right:12px;
-    margin-right:3px;
-    display:inline-block;
-    float:left;
-    background-color:#F8981D;
-    height:16px;
-}
-.memberSummary caption span.tableTab span {
-    white-space:nowrap;
-    padding-top:5px;
-    padding-left:12px;
-    padding-right:12px;
-    margin-right:3px;
-    display:inline-block;
-    float:left;
-    background-color:#4D7A97;
-    height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
-    padding-top:0px;
-    padding-left:0px;
-    padding-right:0px;
-    background-image:none;
-    float:none;
-    display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
-    display:none;
-    width:5px;
-    position:relative;
-    float:left;
-    background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
-    display:none;
-    width:5px;
-    margin-right:3px;
-    position:relative; 
-    float:left;
-    background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
-    display:none;
-    width:5px;
-    margin-right:3px;
-    position:relative;
-    background-color:#4D7A97;
-    float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
-    text-align:left;
-    padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
-    vertical-align:top;
-    padding-right:0px;
-    padding-top:8px;
-    padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
-    background:#dee3e9;
-    text-align:left;
-    padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
-    white-space:nowrap;
-    font-size:13px;
-}
-td.colLast, th.colLast {
-    font-size:13px;
-}
-td.colOne, th.colOne {
-    font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
-    width:25%;
-    vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
-    font-weight:bold;
-}
-.tableSubHeadingColor {
-    background-color:#EEEEFF;
-}
-.altColor {
-    background-color:#FFFFFF;
-}
-.rowColor {
-    background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
-    margin-top:0;
-}
-.deprecatedContent {
-    margin:0;
-    padding:10px 0;
-}
-.docSummary {
-    padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
-    font-style:normal;
-}
-
-div.block {
-    font-size:14px;
-    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
-    padding-top:0px;
-}
-
-
-td.colLast a {
-    padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
-    color:green;
-    padding:0 30px 0 0;
-}
-h1.hidden {
-    visibility:hidden;
-    overflow:hidden;
-    font-size:10px;
-}
-.block {
-    display:block;
-    margin:3px 10px 2px 0px;
-    color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
-    font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
-    font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
-    font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
-    padding-bottom:0px;
-}
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Main.java b/projetAgile/src/fr/iutfbleau/projetAgile/Main.java
index d21b18c..52262da 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Main.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Main.java
@@ -3,10 +3,10 @@ package fr.iutfbleau.projetAgile;
 import javax.swing.*;
 import java.awt.*;
 
-import fr.iutfbleau.projetAgile.Controller.Puissance4Controller;
-import fr.iutfbleau.projetAgile.Model.GrilleModel;
-import fr.iutfbleau.projetAgile.View.Grille;
-import fr.iutfbleau.projetAgile.View.Menu;
+import fr.iutfbleau.projetAgile.Puissance4.Controller.Puissance4Controller;
+import fr.iutfbleau.projetAgile.Puissance4.Model.GrilleModel;
+import fr.iutfbleau.projetAgile.Puissance4.View.Grille;
+import fr.iutfbleau.projetAgile.Menu.View.Menu;
 
 public class Main {
     public static void main(String[] args) {
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.java b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/Controller/ObservateurMenuSouris.java
similarity index 91%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Menu/Controller/ObservateurMenuSouris.java
index 392ec9e..f32cc31 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ObservateurMenuSouris.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/Controller/ObservateurMenuSouris.java
@@ -1,9 +1,8 @@
-package fr.iutfbleau.projetAgile.Controller;
+package fr.iutfbleau.projetAgile.Menu.Controller;
 
 import java.awt.event.MouseListener;
 import java.awt.event.*;
-import javax.swing.JFrame;
-import fr.iutfbleau.projetAgile.View.*;
+import fr.iutfbleau.projetAgile.Menu.View.*;
 
 /**
  * Observateur des Boutons du Menu
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/BoutonsMenu.java b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java
similarity index 97%
rename from projetAgile/src/fr/iutfbleau/projetAgile/View/BoutonsMenu.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java
index 37611c7..1b49060 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/View/BoutonsMenu.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java
@@ -1,4 +1,4 @@
-package fr.iutfbleau.projetAgile.View;
+package fr.iutfbleau.projetAgile.Menu.View;
 
 import javax.swing.JComponent;
 import java.awt.*;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/Menu.java
similarity index 98%
rename from projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/Menu.java
index 9fc80c8..0f62942 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/Menu.java
@@ -1,10 +1,10 @@
-package fr.iutfbleau.projetAgile.View;
+package fr.iutfbleau.projetAgile.Menu.View;
 
 import java.awt.*;
 import javax.swing.JPanel;
 import javax.swing.JFrame;
 import javax.swing.JLabel;
-import fr.iutfbleau.projetAgile.Controller.*;
+import fr.iutfbleau.projetAgile.Menu.Controller.*;
 
 public abstract class Menu{
     public static String PUISSANCE_4="puissance4.png";
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/GrilleMouseListener.java
similarity index 86%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/GrilleMouseListener.java
index 607ef51..b0f6e51 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/GrilleMouseListener.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/GrilleMouseListener.java
@@ -1,8 +1,8 @@
-package fr.iutfbleau.projetAgile.Controller;
+package fr.iutfbleau.projetAgile.Puissance4.Controller;
 
 import java.awt.event.MouseEvent;
 import javax.swing.event.MouseInputAdapter;
-import fr.iutfbleau.projetAgile.Utils.Constants;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
 
 public class GrilleMouseListener extends MouseInputAdapter{
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ModelEventListener.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ModelEventListener.java
similarity index 77%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Controller/ModelEventListener.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ModelEventListener.java
index 7c0a8e5..d1a984a 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ModelEventListener.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ModelEventListener.java
@@ -1,7 +1,7 @@
-package fr.iutfbleau.projetAgile.Controller;
+package fr.iutfbleau.projetAgile.Puissance4.Controller;
 
-import fr.iutfbleau.projetAgile.Event.*;
-import fr.iutfbleau.projetAgile.View.Puissance4Panel;
+import fr.iutfbleau.projetAgile.Puissance4.Event.*;
+import fr.iutfbleau.projetAgile.Puissance4.View.Puissance4Panel;
 
 public class ModelEventListener implements GridChangedListener  {
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/Puissance4Controller.java
similarity index 88%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/Puissance4Controller.java
index 9dcc747..ab31ea4 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/Puissance4Controller.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/Puissance4Controller.java
@@ -1,12 +1,12 @@
-package fr.iutfbleau.projetAgile.Controller;
+package fr.iutfbleau.projetAgile.Puissance4.Controller;
 
 import javax.swing.JOptionPane;
 import javax.swing.JPanel;
 
-import fr.iutfbleau.projetAgile.Model.GrilleModel;
-import fr.iutfbleau.projetAgile.Utils.GameStatus;
-import fr.iutfbleau.projetAgile.View.Grille;
-import fr.iutfbleau.projetAgile.View.Puissance4Panel;
+import fr.iutfbleau.projetAgile.Puissance4.Model.GrilleModel;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.GameStatus;
+import fr.iutfbleau.projetAgile.Puissance4.View.Grille;
+import fr.iutfbleau.projetAgile.Puissance4.View.Puissance4Panel;
 
 public class Puissance4Controller {
     private Grille grille;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ResetGame.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ResetGame.java
similarity index 87%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Controller/ResetGame.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ResetGame.java
index 9f7aa2f..8b39cee 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Controller/ResetGame.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Controller/ResetGame.java
@@ -1,9 +1,7 @@
-package fr.iutfbleau.projetAgile.Controller;
+package fr.iutfbleau.projetAgile.Puissance4.Controller;
 
 import  java.awt.event.*;
 
-
-
 public class ResetGame implements ActionListener {
 
    /**
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/AbstractGridInitiater.java
similarity index 95%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/AbstractGridInitiater.java
index ad3126b..bd61921 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Event/AbstractGridInitiater.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/AbstractGridInitiater.java
@@ -1,6 +1,7 @@
-package fr.iutfbleau.projetAgile.Event;
+package fr.iutfbleau.projetAgile.Puissance4.Event;
+
 import javax.swing.event.EventListenerList;
-import fr.iutfbleau.projetAgile.Utils.GameStatus;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.GameStatus;
 
 public abstract class AbstractGridInitiater {
     
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Event/GridChangedListener.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridChangedListener.java
similarity index 93%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Event/GridChangedListener.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridChangedListener.java
index 0030ac1..830a6a2 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Event/GridChangedListener.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridChangedListener.java
@@ -1,4 +1,4 @@
-package fr.iutfbleau.projetAgile.Event;
+package fr.iutfbleau.projetAgile.Puissance4.Event;
 
 import java.util.EventListener;
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Event/GridEvent.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridEvent.java
similarity index 94%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Event/GridEvent.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridEvent.java
index 5c5345b..46256c5 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Event/GridEvent.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/GridEvent.java
@@ -1,4 +1,4 @@
-package fr.iutfbleau.projetAgile.Event;
+package fr.iutfbleau.projetAgile.Puissance4.Event;
 
 public class GridEvent {
     private int column;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Event/StatusEvent.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/StatusEvent.java
similarity index 82%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Event/StatusEvent.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/StatusEvent.java
index d901b14..f2a033e 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Event/StatusEvent.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Event/StatusEvent.java
@@ -1,6 +1,6 @@
-package fr.iutfbleau.projetAgile.Event;
+package fr.iutfbleau.projetAgile.Puissance4.Event;
 
-import fr.iutfbleau.projetAgile.Utils.GameStatus;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.GameStatus;
 
 public class StatusEvent {
     private GameStatus status;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Model/GrilleModel.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Model/GrilleModel.java
similarity index 95%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Model/GrilleModel.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Model/GrilleModel.java
index 8bd0b8c..ee7a2b0 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Model/GrilleModel.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Model/GrilleModel.java
@@ -1,8 +1,8 @@
-package fr.iutfbleau.projetAgile.Model;
+package fr.iutfbleau.projetAgile.Puissance4.Model;
 
-import fr.iutfbleau.projetAgile.Event.AbstractGridInitiater;
-import fr.iutfbleau.projetAgile.Utils.Constants;
-import fr.iutfbleau.projetAgile.Utils.GameStatus;
+import fr.iutfbleau.projetAgile.Puissance4.Event.AbstractGridInitiater;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.GameStatus;
 
 public class GrilleModel extends AbstractGridInitiater{
     private int[][] grille;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Utils/Constants.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/Constants.java
similarity index 92%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Utils/Constants.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/Constants.java
index 6b3a82c..7d08d66 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Utils/Constants.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/Constants.java
@@ -1,4 +1,4 @@
-package fr.iutfbleau.projetAgile.Utils;
+package fr.iutfbleau.projetAgile.Puissance4.Utils;
 
 import java.awt.Color;
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Utils/GameStatus.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/GameStatus.java
similarity index 51%
rename from projetAgile/src/fr/iutfbleau/projetAgile/Utils/GameStatus.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/GameStatus.java
index 6fbe5d8..e5a318a 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/Utils/GameStatus.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/Utils/GameStatus.java
@@ -1,4 +1,4 @@
-package fr.iutfbleau.projetAgile.Utils;
+package fr.iutfbleau.projetAgile.Puissance4.Utils;
 
 public enum GameStatus {
     PLAYING, STOP, DRAW;
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/Grille.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Grille.java
similarity index 96%
rename from projetAgile/src/fr/iutfbleau/projetAgile/View/Grille.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Grille.java
index cc4218d..5f3d8f8 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/View/Grille.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Grille.java
@@ -1,8 +1,8 @@
-package fr.iutfbleau.projetAgile.View;
+package fr.iutfbleau.projetAgile.Puissance4.View;
 
 import javax.swing.*;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
 import java.awt.*;
-import fr.iutfbleau.projetAgile.Utils.Constants;
 
 public class Grille extends JPanel{
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/Pion.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Pion.java
similarity index 91%
rename from projetAgile/src/fr/iutfbleau/projetAgile/View/Pion.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Pion.java
index d9d813a..cf11911 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/View/Pion.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Pion.java
@@ -1,8 +1,10 @@
-package fr.iutfbleau.projetAgile.View;
+package fr.iutfbleau.projetAgile.Puissance4.View;
 
 import java.awt.*;
 import javax.swing.*;
-import fr.iutfbleau.projetAgile.Utils.Constants;
+
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
 
 public class Pion extends JComponent{
 
diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/Puissance4Panel.java b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Puissance4Panel.java
similarity index 95%
rename from projetAgile/src/fr/iutfbleau/projetAgile/View/Puissance4Panel.java
rename to projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Puissance4Panel.java
index c407a6a..9d92bd4 100644
--- a/projetAgile/src/fr/iutfbleau/projetAgile/View/Puissance4Panel.java
+++ b/projetAgile/src/fr/iutfbleau/projetAgile/Puissance4/View/Puissance4Panel.java
@@ -1,12 +1,12 @@
-package fr.iutfbleau.projetAgile.View;
+package fr.iutfbleau.projetAgile.Puissance4.View;
 
 import javax.swing.*;
 import javax.swing.border.EmptyBorder;
 
+import fr.iutfbleau.projetAgile.Puissance4.Utils.Constants;
+import fr.iutfbleau.projetAgile.Puissance4.Utils.GameStatus;
 import java.awt.*;
 import java.awt.event.ActionListener;
-import fr.iutfbleau.projetAgile.Utils.Constants;
-import fr.iutfbleau.projetAgile.Utils.GameStatus;
 
 public class Puissance4Panel extends JPanel{