From 52981b103f1f944e93a7a06c0518c7d4486ea18a Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 10 May 2022 15:12:17 +0200 Subject: [PATCH] maj --- FrameVictoire.java | 2 +- Grille.java | 2 +- Test.java | 11 +++++++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/FrameVictoire.java b/FrameVictoire.java index 1790bd8..47f9a05 100644 --- a/FrameVictoire.java +++ b/FrameVictoire.java @@ -1,5 +1,5 @@ public class FrameVictoire { - public FrameVictoire(){ + public FrameVictoire(Grille grille){ System.out.println("Victoire!"); } } diff --git a/Grille.java b/Grille.java index f5ef656..4d25d8c 100644 --- a/Grille.java +++ b/Grille.java @@ -173,7 +173,7 @@ public class Grille extends JPanel { } } if (taille==casesDeminees){ - new FrameVictoire(); + new FrameVictoire(this); } } diff --git a/Test.java b/Test.java index 49fdf3f..8bdc4bd 100644 --- a/Test.java +++ b/Test.java @@ -6,6 +6,13 @@ public class Test { /* Flux de sortie représenté par la classe Output Stream -* Méthodes cruciales : void write(int); -* void flush(); +* Méthodes cruciales : void write(int); +* void flush(); +* Flux d'entrée général représenté par Input Stream +* Méthodes importantes : int read(); +* int available(); +* long skip (long); +* boolean markSupported(); +* void mark(int); +* void reset(); */