MàJ par récupération sur Clé USB et dans /mnt/hd/Chargement du pc portable
This commit is contained in:
BIN
G5a/Cours/1-java-syntaxe.pdf
Normal file
BIN
G5a/Cours/1-java-syntaxe.pdf
Normal file
Binary file not shown.
BIN
G5a/Cours/2-HeritageJava.pdf
Normal file
BIN
G5a/Cours/2-HeritageJava.pdf
Normal file
Binary file not shown.
BIN
G5a/Cours/2-HeritageUML.pdf
Normal file
BIN
G5a/Cours/2-HeritageUML.pdf
Normal file
Binary file not shown.
BIN
G5a/Cours/2-Les classes.pdf
Normal file
BIN
G5a/Cours/2-Les classes.pdf
Normal file
Binary file not shown.
BIN
G5a/Cours/3-java-StringTableaux.pdf
Normal file
BIN
G5a/Cours/3-java-StringTableaux.pdf
Normal file
Binary file not shown.
BIN
G5a/Cours/3-relations.pdf
Normal file
BIN
G5a/Cours/3-relations.pdf
Normal file
Binary file not shown.
39
G5a/Cours/Puissance1.java
Normal file
39
G5a/Cours/Puissance1.java
Normal file
@ -0,0 +1,39 @@
|
||||
/* Ceci est un premier programme tr<74>s simple mettant en oeuvre
|
||||
quelques notions de base java */
|
||||
|
||||
import iutsud.Console; // import de la classe Console du package iutsud pour les entr<74>es-sorties
|
||||
|
||||
/** Classe qui saisit <20> la console 2 entiers et qui affiche leur puissance */
|
||||
public class Puissance1{ /* classe principale et unique de notre petit programme. RQ : elle
|
||||
a le meme nom que le fichier source */
|
||||
|
||||
/** methode principale de la classe */
|
||||
public static void main (String[] args) {
|
||||
int x; //declaration d'une variable x de type entier
|
||||
int y; //idem
|
||||
String ps = " puissance "; // declaration et initialisation d'une chaine de caracteres
|
||||
System.out.print ("x : "); //affichage sur la sortie standard (ecran DOS)
|
||||
x=Console.readInt(); // lecture sur l'entree standard (clavier)
|
||||
System.out.print ("y : ");
|
||||
y=Console.readInt();
|
||||
System.out.println ("Calcul de "+x+ps+y); /*attention c'est le + de la concat<61>nation !
|
||||
Que donnerait println (x+y+ps+x+y) ? */
|
||||
System.out.println (x+ps+y+" = "+ puissance(x,y)); //appel d'une autre methode de la classe
|
||||
}
|
||||
/** fonction <20> 2 param<61>tres : calcul de a puissance k avec l'algorithme egyptien*/
|
||||
public static int puissance (int a, int k) { //autre methode de ma classe avec 2 parametres
|
||||
int res,p; //declaration de 2 entiers locaux <20> cette methode
|
||||
res = 1;
|
||||
p=a; //affectations
|
||||
while (k>0) {
|
||||
int div=2; //declaration d'une variable locale <20> la boucle while
|
||||
if (k%div ==1) { // comparaison : attention <20> la confusion entre = et ==
|
||||
res=res*p;
|
||||
}
|
||||
p=p*p;
|
||||
k=k/2;
|
||||
}
|
||||
return res; // valeur de retour de l'expression puissance(x,y)du main
|
||||
}
|
||||
|
||||
}
|
37
G5a/Cours/Puissance2.java
Normal file
37
G5a/Cours/Puissance2.java
Normal file
@ -0,0 +1,37 @@
|
||||
/* Amelioration de "puissance1" avec des entrees-sorties plus conviviales */
|
||||
|
||||
import javax.swing.JOptionPane;// import de la classe JOptionPane du package swing situ<74> dans le package javax
|
||||
class Puissance2{
|
||||
|
||||
public static void main (String[] args) {
|
||||
int x, y;
|
||||
String ch1,ch2;
|
||||
String ps = " puissance ";
|
||||
ch1=JOptionPane.showInputDialog("taper votre 1er nb ici");
|
||||
//appel de la fonction showInputDialog de la classe JOptionPane du package swing
|
||||
ch2=JOptionPane.showInputDialog("taper votre 2eme nb ici");
|
||||
System.out.println("nb1="+ch1+"; nb2="+ch2);
|
||||
x=Integer.parseInt(ch1); //conversion explicite d'une chaine de caract en entier (fonction de la classe Integer)
|
||||
y=Integer.parseInt(ch2);
|
||||
JOptionPane.showMessageDialog(null,"Resultat : "+x+ps+y+" = "+ puissance(x,y),"Titre de la fenetre",JOptionPane.WARNING_MESSAGE);
|
||||
// appel d'une autre fonction de la meme classe
|
||||
// NB : le dernier parametre est une constante de la classe (majuscules) qui agit sur l'icone
|
||||
System.exit(0); // Sortie du programme
|
||||
|
||||
}
|
||||
public static int puissance (int a, int k) { //autre methode de ma classe avec 2 parametres
|
||||
int res,p; //declaration de 2 entiers locaux <20> cette methode
|
||||
res = 1;
|
||||
p=a; //affectations
|
||||
while (k>0) {
|
||||
int div=2; //declaration d'une variable locale <20> la boucle while
|
||||
if (k%div ==1) { // comparaison : attention <20> la confusion entre = et ==
|
||||
res=res*p;
|
||||
}
|
||||
p=p*p;
|
||||
k=k/2;
|
||||
}
|
||||
return res; // valeur de retour de l'expression puissance(x,y)du main
|
||||
}
|
||||
|
||||
}
|
71
G5a/Exercices/1-Environnement.html
Normal file
71
G5a/Exercices/1-Environnement.html
Normal file
@ -0,0 +1,71 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>exosJava-syntaxe</title>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=windows-1252">
|
||||
<link rel="stylesheet" href="perso.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Premi<EFBFBD>re connexion<br>
|
||||
</h1>
|
||||
<span style="font-family: Arial;">
|
||||
<h2 style="font-family: Arial;">Les aides </h2>
|
||||
<p style="font-family: Arial;">1. Le cours sur l'extranet : "<a href="http://tetras.u-strasbg.fr">https://tetras.u-strasbg.fr</a>"
|
||||
Onglet : Pedagogie/LP/G5a</p>
|
||||
<p style="font-family: Arial;">2. Les sujets d'exercices, les corrig<69>s ,
|
||||
supports de cours en pdf et divers documents sur "<a href="http://pipit/~divoux/G5a">http://pipit/~divoux/G5a</a>" </p>
|
||||
<p style="font-family: Arial;">3 . La documentation java de Sun (doc de classes,
|
||||
tutoriaux,...) en anglais ! sur "java.sun.com" cf aussi sur l'extranet
|
||||
G5a : "Liens"</p>
|
||||
<p style="font-family: Arial;">4. Les <20>diteurs de code java : Notepad++, jEdit</p>
|
||||
<h2 style="font-family: Arial;">D<EFBFBD>but java</h2>
|
||||
<p style="font-family: Arial;">1. Sur votre r<>pertoire personnel (X:) creez un
|
||||
r<EFBFBD>pertoire "G5a" et un sous r<>pertoire "java"</p>
|
||||
<p style="font-family: Arial;">2. Recopiez le package "iutsud" (sur
|
||||
pipit) avec son r<>pertoire dans votre rep "java" </p>
|
||||
<p style="font-family: Arial;">3. Positionnez les variables d'environnement :
|
||||
PATH : doit acc<63>der aux ex<65>cutables "java" et "javac" dans
|
||||
C:/Program Files/java/jdk1.5.0 ; CLASSPATH indique le chemin des classes
|
||||
ex<EFBFBD>cutables (les .class) : il doit pointer sur votre r<>pertoire java (l<> o<>
|
||||
sont les .class), sur le r<>pertoire o<> vous avez plac<61> "iutsud" et
|
||||
sur le r<>pertoire courant</p>
|
||||
<p style="font-family: Arial;">4. V<>rifiez en tapant sous une fen<65>tre DOS
|
||||
"java -version" ---> version 1.5.0</p>
|
||||
<p style="font-family: Arial;">5. Recopiez chez vous (rep "java") les
|
||||
2 programmes "Puissance1" et "Puissance2" , compilez et
|
||||
ex<EFBFBD>cutez</p>
|
||||
<p style="font-family: Arial;">6. Cherchez sur la doc java de Sun ce que font
|
||||
les 2 instructions suivantes du pg "Puissance2"</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p style="font-family: Arial;">x=Integer.parseInt(ch1)</li>
|
||||
<li>
|
||||
<p style="font-family: Arial;">JOptionPane.showMessageDialog(null,"Resultat....</li>
|
||||
</ul>
|
||||
<p style="font-family: Arial;"> Comment changer le titre
|
||||
de la fen<65>tre de r<>sultat ? Comment changer son ic<69>ne ? remplacez le
|
||||
"!" par un ic<69>ne d'information "i" </p>
|
||||
<h2 style="font-family: Arial;">Mon premier programme Java : </h2>
|
||||
<h3 style="font-family: Arial;">Bonjour </h3>
|
||||
<p style="font-family: Arial;">1.
|
||||
Ecrire
|
||||
<EFBFBD> l'aide d'un <20>diteur de texte, un
|
||||
programme Java qui affiche <20> l'<27>cran
|
||||
"Bonjour
|
||||
!" ; le sauvegarder
|
||||
sous le nom : "Bonjour.java"</p>
|
||||
<p style="font-family: Arial;">2.
|
||||
Compiler avec la commande <code>javac
|
||||
Bonjour.java <big><span style="font-family: Arial;">(verifier le
|
||||
chemin
|
||||
d'acc<63>s <20> javac)</span></big>
|
||||
</code></p>
|
||||
<strong style="font-weight: normal;">3.</strong>
|
||||
<span style="font-family: Arial;">Ex<EFBFBD>cuter
|
||||
le programme avec la commande</span>
|
||||
<code>java Bonjour </code><code><big><span style="font-family: Arial;">(verifier
|
||||
le chemin
|
||||
d'acc<63>s <20> vos classes CLASSPATH)</span></big></code>
|
||||
</body>
|
||||
</html>
|
131
G5a/Exercices/2-exosSyntaxeJava.html
Normal file
131
G5a/Exercices/2-exosSyntaxeJava.html
Normal file
@ -0,0 +1,131 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>exosJava-syntaxe</title>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=windows-1252">
|
||||
<link rel="stylesheet" href="perso.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Exercices Syntaxe Java<br>
|
||||
</h1>
|
||||
<span style="font-family: Arial;">
|
||||
<h2 style="font-family: Arial;">Mes premiers programmes Java : </h2>
|
||||
<h3 style="font-family: Arial;">Bonjour </h3>
|
||||
<p style="font-family: Arial;">1.
|
||||
Ecrire
|
||||
<EFBFBD> l'aide d'un <20>diteur de texte, un
|
||||
programme Java qui affiche <20> l'<27>cran
|
||||
"Bonjour
|
||||
!" ; le sauvegarder
|
||||
sous le nom : "Bonjour.java"</p>
|
||||
<p style="font-family: Arial;">2.
|
||||
Compiler avec la commande <code>javac
|
||||
Bonjour.java <big><span style="font-family: Arial;">(verifier le
|
||||
chemin
|
||||
d'acc<63>s <20> javac)</span></big><br>
|
||||
</code></p>
|
||||
<strong style="font-weight: normal;">3.</strong>
|
||||
<span style="font-family: Arial;">Ex<EFBFBD>cuter
|
||||
le programme avec la commande</span>
|
||||
<code>java Bonjour </code><code><big><span style="font-family: Arial;">(verifier
|
||||
le chemin
|
||||
d'acc<63>s <20> vos classes CLASSPATH)</span></big></code>
|
||||
<h3 style="font-family: Arial;">Bonjour toi
|
||||
</h3>
|
||||
<strong></strong><span style="font-family: Arial;">Saisie de votre <span style="font-weight: bold;">pr<EFBFBD>nom </span>et
|
||||
de votre ann<6E>e de
|
||||
naissance puis affichage de la phrase : "Bonjour </span><span
|
||||
style="font-style: italic; font-family: Arial;">prenom,
|
||||
</span><span style="font-family: Arial;">vous
|
||||
avez xx ans"</span>
|
||||
<ul style="font-family: Arial;">
|
||||
<li><small> </small>1. En
|
||||
utilisant le
|
||||
package "iutsud" <code><span style="font-family: Arial;"><big>(verifier
|
||||
le chemin
|
||||
d'acc<63>s <20> ce package)</big></span></code> <br>
|
||||
</li>
|
||||
<li>2. En utilisant JOptionPane</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<h3>Puissance
|
||||
</h3>
|
||||
R<EFBFBD><EFBFBD>crire le programme "<span style="font-weight: bold;">puissance</span>"
|
||||
avec un
|
||||
autre algorithme de calcul (attention :x puissance 0=1 et 0 puissance 0
|
||||
n'est pas d<>fini)<br>
|
||||
<h2 style="font-family: Arial;">Avec passage
|
||||
d'arguments
|
||||
</h2>
|
||||
<h3 style="font-family: Arial;"><br>
|
||||
InverseArgs
|
||||
</h3>
|
||||
<p style="font-family: Arial;">Ecrire un programme
|
||||
Java affichant la liste des arguments pass<73>s en
|
||||
param<EFBFBD>tre dans l'ordre inverse
|
||||
de celui donn<6E> par
|
||||
l'utilisateur. Affiche un message
|
||||
d'erreur si il n'y a pas d'arguments.</p>
|
||||
<ul style="font-family: Arial;">
|
||||
<p style="font-family: Arial;">
|
||||
<small>NB : args[i] donne le
|
||||
i<EFBFBD>me argument ; args.length donne le nombre d'arguments (la
|
||||
taille du tableau) ; les indices de tableau commencent <20> 0</small></p>
|
||||
</ul>
|
||||
<blockquote>
|
||||
<pre>> java InverseArgs
|
||||
vous avez oubli<6C> les arguments...</pre>
|
||||
<pre>> java InverseArgs ! bien c'est Java
|
||||
Java c'est bien !</pre>
|
||||
</blockquote>
|
||||
<h3>Somme</h3>
|
||||
<p>Ecrire un programme Java effectuant
|
||||
la somme
|
||||
des entiers pass<73>s
|
||||
en arguments. Dans le
|
||||
cas o<> il n'y a pas d'argument, il affiche le message
|
||||
d'erreur : "vous avez oubli<6C> les arguments...". S'il n'y a
|
||||
qu'un seul argument, il affiche le message : "vous n'avez
|
||||
pass<EFBFBD> qu'un seul argument : X", avec X l'argument
|
||||
pass<EFBFBD>. Utilisez le "switch".<br>
|
||||
</p>
|
||||
<blockquote>
|
||||
<pre>> java SommeEntiers
|
||||
vous avez oubli<6C> les arguments...
|
||||
> java SommeEntiers 2
|
||||
vous n'avez pass<73> qu'un seul argument : 2
|
||||
> java SommeEntiers 1 9 3
|
||||
somme = 13
|
||||
</pre>
|
||||
</blockquote>
|
||||
<h3>Premier</h3>
|
||||
<p>Ecrire un programme Java qui lit un entier au clavier et qui d<>termine s'il
|
||||
s'agit ou non d'un nombre premier (sinon, afficher le premier multiple) ; saisir
|
||||
le chiffre 0 arr<72>te le programme.</span>
|
||||
</p>
|
||||
<blockquote>
|
||||
<pre><font face="Courier New">
|
||||
> java Premier
|
||||
Votre nombre :
|
||||
>19
|
||||
19 est premier
|
||||
Votre nombre :
|
||||
>21
|
||||
21 n'est pas premier, il est multiple de 3
|
||||
Votre nombre :
|
||||
>1
|
||||
1 n'est pas premier par d<>finition
|
||||
Votre nombre :
|
||||
>0
|
||||
>
|
||||
|
||||
|
||||
</pre>
|
||||
</blockquote>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
118
G5a/Exercices/3-exosClasses1.html
Normal file
118
G5a/Exercices/3-exosClasses1.html
Normal file
@ -0,0 +1,118 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252">
|
||||
<TITLE>exosJavaClasse 1</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="OpenOffice.org 2.2 (Win32)">
|
||||
<META NAME="CREATED" CONTENT="20070910;17190910">
|
||||
<META NAME="CHANGED" CONTENT="16010101;0">
|
||||
<STYLE TYPE="text/css">
|
||||
<!--
|
||||
@page { size: 21cm 29.7cm }
|
||||
H2.western { font-family: "Albany", sans-serif; font-size: 14pt; font-style: italic }
|
||||
H2.cjk { font-family: "HG Mincho Light J"; font-size: 14pt; font-style: italic }
|
||||
H2.ctl { font-family: "Arial Unicode MS"; font-size: 14pt; font-style: italic }
|
||||
-->
|
||||
</STYLE>
|
||||
</HEAD>
|
||||
<BODY LANG="fr-FR" DIR="LTR">
|
||||
<H1><FONT FACE="Arial">Exercices java : Classes et héritage</FONT></H1>
|
||||
<H2 CLASS="western"><FONT FACE="Arial">1. Adherent</FONT></H2>
|
||||
<UL>
|
||||
<P><FONT FACE="Arial"><B>1.1.</B> Traduire en java la classe
|
||||
"Adherent" vue en cours </FONT>
|
||||
</P>
|
||||
</UL>
|
||||
<P>
|
||||
<IMG SRC="DCA-Adherent.jpg" NAME="Image1" ALT="DCA-adherent" ALIGN=BOTTOM WIDTH=221 HEIGHT=235 BORDER=0>
|
||||
</P>
|
||||
<UL>
|
||||
<P><FONT FACE="Arial"><BR><B>1.2. </B>Creer le constructeur et un
|
||||
main qui utilise cette classe (création d'
|
||||
adherents , cotisation...,) ; ajouter une methode "etat()"
|
||||
qui renvoie "a jour" ou "pas a jour" et une
|
||||
methode toString()<BR><B>1.3. </B>Créer un package "PackAdh"
|
||||
; y placer la classe Adherent et une classe "Gerant"
|
||||
qui fait la saisie de 3 adherents et teste à chaque fois
|
||||
l'etat de ses adherents : (1, Dupont ,Paris 1980) ; (2, Meyer,
|
||||
Strasbourg, 1955) ; (3,Legwenn,Brest,1960) </FONT>
|
||||
</P>
|
||||
</UL>
|
||||
<UL>
|
||||
<LI><BLOCKQUOTE STYLE="margin-bottom: 0cm"><FONT FACE="Arial">Dupont
|
||||
verse 45 -> à jour</FONT></BLOCKQUOTE>
|
||||
<LI><BLOCKQUOTE STYLE="margin-bottom: 0cm"><FONT FACE="Arial">Meyer
|
||||
verse 30 -> non à jour </FONT>
|
||||
</BLOCKQUOTE>
|
||||
<LI><BLOCKQUOTE STYLE="margin-bottom: 0cm"><FONT FACE="Arial">Legwenn
|
||||
verse 40 -> non à jour </FONT>
|
||||
</BLOCKQUOTE>
|
||||
<LI><BLOCKQUOTE><FONT FACE="Arial">Meyer verse 15 <FONT FACE="Arial">->
|
||||
à jour</FONT> </FONT>
|
||||
</BLOCKQUOTE>
|
||||
</UL>
|
||||
<H2 CLASS="western"><FONT FACE="Arial">2. Personne/Femme </FONT>
|
||||
</H2>
|
||||
<UL>
|
||||
<P><STRONG><FONT FACE="Arial">2.1.</FONT></STRONG><FONT FACE="Arial">
|
||||
Créer une classe "Personne" avec nom et année
|
||||
de naissance ; ajouter le constructeur et une méthode
|
||||
toString qui affiche les 2 propriétés ; ajouter un
|
||||
main qui crée quelques personnes. </FONT>
|
||||
</P>
|
||||
<P><FONT FACE="Arial"><B>2.2.</B> Créer une classe "Femme"
|
||||
qui hérite de Personne et qui possède en plus un nom
|
||||
de jeune fille ; ajouter le constructeur et une méthode
|
||||
toString qui affiche les 3 propriétés. Modifiez le
|
||||
main pour avoir le résultat suivant : </FONT>
|
||||
</P>
|
||||
<BLOCKQUOTE><FONT FACE="Courier New">Dupont 1970 <BR>Dupont 1972 née
|
||||
Durand</FONT></BLOCKQUOTE>
|
||||
</UL>
|
||||
<H2 CLASS="western"><FONT FACE="Arial">3. Confitures </FONT>
|
||||
</H2>
|
||||
<UL>
|
||||
<P><STRONG><FONT FACE="Arial">3.1.</FONT></STRONG><FONT FACE="Arial">
|
||||
Créer avec un AGL (StarUML, argoUML...) une classe "Confiture" comme
|
||||
celle-ci :</FONT></P>
|
||||
</UL>
|
||||
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><IMG SRC="Confiture.jpg" NAME="Image2" ALT="confiture" ALIGN=BOTTOM WIDTH=252 HEIGHT=117 BORDER=0></P>
|
||||
<P ALIGN=LEFT>
|
||||
</P>
|
||||
<UL>
|
||||
<P><STRONG><FONT FACE="Arial">3.2.</FONT></STRONG><FONT FACE="Arial">
|
||||
Compléter et générer : </FONT>
|
||||
</P>
|
||||
<UL>
|
||||
<LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Arial">Créer
|
||||
des accesseurs publics (get et set) pour les attributs sauf pour
|
||||
"id" qui doit etre incrémenté
|
||||
automatiquement (get seulement) Saisir le code du constructeur
|
||||
(ajouter ce qu'il faut pour l'autoincrémentation) </FONT>
|
||||
</P>
|
||||
<LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Arial">Générer
|
||||
le code du programme java correspondant. Ecrire une méthode
|
||||
</FONT><CODE><FONT FACE="Arial">main</FONT></CODE><FONT FACE="Arial">
|
||||
pour créer deux confitures et afficher l'id, le parfum et le
|
||||
nom du cuisinier. </FONT>
|
||||
</P>
|
||||
<LI><P><FONT FACE="Arial">Tester</FONT></P>
|
||||
</UL>
|
||||
</UL>
|
||||
<UL>
|
||||
<P><STRONG><FONT FACE="Arial">3.3.</FONT></STRONG><FONT FACE="Arial">
|
||||
Ajouter à la classe </FONT><CODE><FONT FACE="Arial">Confiture</FONT></CODE><FONT FACE="Arial">
|
||||
une méthode </FONT><CODE><FONT FACE="Arial">toString()</FONT></CODE><FONT FACE="Arial">
|
||||
qui renvoie une chaîne de caractères décrivant
|
||||
la confiture (id, parfum, cuisinier, année). </FONT>
|
||||
</P>
|
||||
<P><STRONG><FONT FACE="Arial">3.4.</FONT></STRONG><FONT FACE="Arial">
|
||||
Pour afficher la description des confitures, il est maintenant
|
||||
possible d'utiliser la méthode </FONT><CODE><FONT FACE="Arial">println()</FONT></CODE><FONT FACE="Arial">
|
||||
avec un argument de type </FONT><CODE><FONT FACE="Arial">Confiture</FONT></CODE><FONT FACE="Arial">.
|
||||
A tester dans la méthode </FONT><CODE><FONT FACE="Arial">main</FONT></CODE></P>
|
||||
</UL>
|
||||
<P STYLE="margin-left: 1.06cm"><BR><BR>
|
||||
</P>
|
||||
</BODY>
|
||||
</HTML>
|
214
G5a/Exercices/3.1-emp1.html
Normal file
214
G5a/Exercices/3.1-emp1.html
Normal file
@ -0,0 +1,214 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252">
|
||||
<TITLE>Feuille d’exercice N° 1 </TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="OpenOffice.org 2.2 (Win32)">
|
||||
<META NAME="AUTHOR" CONTENT="Divoux P">
|
||||
<META NAME="CREATED" CONTENT="20050920;18230000">
|
||||
<META NAME="CHANGEDBY" CONTENT="pascal">
|
||||
<META NAME="CHANGED" CONTENT="20070913;12050000">
|
||||
<META NAME="CLASSIFICATION" CONTENT="modélisation objet">
|
||||
<META NAME="DESCRIPTION" CONTENT="Exercices sur le DCA avec héritage et sans relations">
|
||||
<STYLE TYPE="text/css">
|
||||
<!--
|
||||
@page { size: 21cm 29.7cm; margin-right: 1.75cm; margin-top: 0.75cm; margin-bottom: 1.04cm }
|
||||
P { margin-right: -0cm; margin-bottom: 0cm; border-top: 1px solid #000000; border-bottom: none; border-left: none; border-right: none; padding-top: 0.04cm; padding-bottom: 0cm; padding-left: 0cm; padding-right: 0cm; direction: ltr; color: #000000; text-align: justify; widows: 2; orphans: 2 }
|
||||
P.western { font-family: "Times New Roman", serif; font-size: 10pt; so-language: fr-FR }
|
||||
P.cjk { font-family: "Times New Roman", serif; font-size: 10pt }
|
||||
P.ctl { font-family: "Times New Roman", serif; font-size: 10pt }
|
||||
H1 { margin-top: 0cm; margin-bottom: 0cm; direction: ltr; color: #000000; text-align: justify; widows: 2; orphans: 2 }
|
||||
H1.western { font-family: "Times New Roman", serif; font-size: 14pt; so-language: fr-FR }
|
||||
H1.cjk { font-family: "Times New Roman", serif; font-size: 14pt }
|
||||
H1.ctl { font-family: "Times New Roman", serif; font-size: 10pt; font-weight: medium }
|
||||
-->
|
||||
</STYLE>
|
||||
</HEAD>
|
||||
<BODY LANG="fr-FR" TEXT="#000000" DIR="LTR">
|
||||
<DIV TYPE=HEADER>
|
||||
<P ALIGN=LEFT STYLE="margin-left: -0.5cm; margin-right: 0cm; margin-bottom: 0.9cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Helv, Arial, sans-serif"><FONT SIZE=2 STYLE="font-size: 9pt"><B>Formation
|
||||
UML P. Divoux</B></FONT></FONT></P>
|
||||
</DIV>
|
||||
<H1 CLASS="western" ALIGN=CENTER STYLE="background: #b2b2b2; border: 1px solid #000000; padding: 0.04cm">
|
||||
<FONT FACE="Comic Sans MS, cursive">Employé -Service</FONT></H1>
|
||||
<P CLASS="western" ALIGN=JUSTIFY STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<H1 CLASS="western" STYLE="border-top: 1px solid #000000; border-bottom: none; border-left: none; border-right: none; padding-top: 0.04cm; padding-bottom: 0cm; padding-left: 0cm; padding-right: 0cm">
|
||||
<FONT FACE="Comic Sans MS, cursive">Employé Version 1</FONT></H1>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=JUSTIFY STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Dans une entreprise, un employé
|
||||
est identifié par son matricule (un nombre), on veut pouvoir
|
||||
afficher son nom, son adresse, son ancienneté, son service
|
||||
d’affectation (ex : "Comptabilité") et le
|
||||
montant de sa prime ; La prime d’un employé est calculée
|
||||
en multipliant le nombre d’années d’ancienneté
|
||||
par un coefficient identique pour tous les employés :
|
||||
"coeffPrime" (qui vaut actuellement 120) ; pour les
|
||||
commerciaux, cette prime est augmentée d'un intéressement
|
||||
proportionnel au chiffre d’affaire qu’ils ont réalisé
|
||||
(la valeur de "pourcentInteressement" est actuellement de
|
||||
15%).</FONT></P>
|
||||
<P STYLE="margin-right: 0cm; border: none; padding: 0cm"><FONT FACE="Arial, sans-serif">Représentez
|
||||
la structure de classes (DCA) et placez les attributs et les
|
||||
accesseurs nécessaires ainsi que les méthodes suivantes
|
||||
:</FONT></P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<UL>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getAdresse() ; retourne l'adresse de
|
||||
l'employé concerné</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getEmp(matricule) ; retourne
|
||||
l'employé dont le matricule est passé en paramètre</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">anciennete() ; retourne l'ancienneté
|
||||
de l'employé</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getService() ; retourne le libellé
|
||||
du service de l'employé courant</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">changerService(nouveauService:String)
|
||||
; change le service de l'employé avec celui passé en
|
||||
paramètre </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getPrimes(); calcule le montant de la
|
||||
prime (intéressement compris dans le cas des commerciaux)</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getPlusAncien(); retourne l'employé
|
||||
qui a la plus grande ancienneté </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">getType() ; retourne le type
|
||||
d’employé : « simple employé »
|
||||
ou « commercial »</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">NouvelEmploye
|
||||
(nom,adresse,anneeEmbauche,service)</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">NouveauCommercial(nom,adresse,
|
||||
anneeEmbauche,service)</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Modifier le CA d’un commercial
|
||||
(nouvelle_valeur)</FONT></P>
|
||||
</UL>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">RQ : Le matricule est
|
||||
auto-incrémenté à chaque nouvel employé
|
||||
(il ne figure pas comme paramètre de
|
||||
« NouvelEmploye(n,a,ae,s) » il faut en tenir
|
||||
compte dans le modèle</FONT></P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Pensez aux précisions suivantes
|
||||
: </FONT>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<UL>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Typez les attributs, les paramètres,
|
||||
les valeurs de retour des opérations </FONT>
|
||||
</P>
|
||||
</UL>
|
||||
<UL>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Préfixez correctement les
|
||||
attributs et méthodes selon leur nature : individuel,
|
||||
collectif ou commun </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Pensez aussi aux éléments
|
||||
abstraits (classes et méthodes)</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Documentez en quelques mots les
|
||||
classes, attributs et opérations dans l'onglet
|
||||
"Documentation" (voir l'exemple des méthodes
|
||||
ci-dessus)</FONT></P>
|
||||
</UL>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Vérifiez que les opérations
|
||||
suivantes sont réalisables : </FONT>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<UL>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Obtenir les caractéristiques
|
||||
(nom, adresse, service, ancienneté et, éventuellement,
|
||||
chiffre d’affaire) de l’employé de matricule X</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Obtenir le nom et la prime de
|
||||
l’employé le plus ancien</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Afficher la liste de tous les
|
||||
employés avec nom et service</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Lister les employés du service
|
||||
« Comptabilité » </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Lister tous les services avec leur
|
||||
nom et leur nombre d'employés</FONT></P>
|
||||
</UL>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Code Java </FONT>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<BR>
|
||||
</P>
|
||||
<UL>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Saisissez le modèle avec un
|
||||
AGL</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Codez le corps des méthodes
|
||||
dans l’onglet approprié </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Ajoutez les constructeurs et une
|
||||
methode </FONT><FONT FACE="Courier New, monospace">toString() </FONT><FONT FACE="Arial, sans-serif">dans
|
||||
chaque classe qui affiche les informations essentielles : nom,
|
||||
ancienneté, prime …</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Paramétrez correctement les
|
||||
options de génération et de compilation</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Générez, complétez
|
||||
et compilez le code java </FONT>
|
||||
</P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Générez la javadoc</FONT></P>
|
||||
<LI><P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif">Testez en ajoutant une classe
|
||||
« Main » qui crée un petit jeu d’essai
|
||||
de 5 employés dont 2 commerciaux et qui liste les
|
||||
caractéristiques des 5 employés</FONT></P>
|
||||
</UL>
|
||||
<P ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm"><BR>
|
||||
</P>
|
||||
<P CLASS="western" ALIGN=LEFT STYLE="margin-right: 0cm; border: none; padding: 0cm">
|
||||
<FONT FACE="Arial, sans-serif"> </FONT></P>
|
||||
<DIV TYPE=FOOTER>
|
||||
<P ALIGN=LEFT STYLE="margin-right: 0cm; margin-top: 0.61cm; border: none; padding: 0cm">
|
||||
<SDFIELD TYPE=DOCINFO SUBTYPE=CHANGE FORMAT=DATE SDNUM="1036;1036;JJ/MM/AAAAAA HH:MM:SS AM/PM">13/09/200707 12:05:00 PM</SDFIELD> <SDFIELD TYPE=PAGE SUBTYPE=RANDOM FORMAT=PAGE>1</SDFIELD> emp1</P>
|
||||
</DIV>
|
||||
</BODY>
|
||||
</HTML>
|
BIN
G5a/Exercices/3.2western.pdf
Normal file
BIN
G5a/Exercices/3.2western.pdf
Normal file
Binary file not shown.
255
G5a/Exercices/4-exosClasses2.html
Normal file
255
G5a/Exercices/4-exosClasses2.html
Normal file
File diff suppressed because one or more lines are too long
195
G5a/Exercices/5.1-StringTableaux.html
Normal file
195
G5a/Exercices/5.1-StringTableaux.html
Normal file
@ -0,0 +1,195 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
|
||||
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<title>Palindromes</title>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<span style="font-family: Arial;">
|
||||
<h1>Strings, tableaux et matrices</h1>
|
||||
|
||||
<h3><span style="font-weight: bold;">Palindromes</span></h3>
|
||||
|
||||
<span style="font-weight: bold;">1.
|
||||
</span>Ecrire un programme
|
||||
qui prend en argument un mot constitué
|
||||
uniquement de lettres minuscules ou majuscules (pas d'espace ni
|
||||
d'accent) et qui indique si le paramètre est un palindrome
|
||||
ou non.<br>
|
||||
|
||||
<code><br>
|
||||
|
||||
> Palindrome senones<br>
|
||||
|
||||
vrai<br>
|
||||
|
||||
> Palindrome
|
||||
Senones<br>
|
||||
|
||||
faux </code><br>
|
||||
|
||||
<br>
|
||||
|
||||
<span style="font-weight: bold;">2.</span> adapter
|
||||
ce programme pour le rendre insensible aux espaces et aux
|
||||
Majuscules<br>
|
||||
|
||||
<code><br>
|
||||
|
||||
> Palindrome Esope reste ici et
|
||||
se repose<br>
|
||||
|
||||
vrai</code><br>
|
||||
|
||||
<br>
|
||||
|
||||
<span style="font-weight: bold;">3.</span>
|
||||
adapter ce programme
|
||||
pour le rendre insensible aux
|
||||
lettres
|
||||
accentuées (créer une fonction qui remplace un
|
||||
caractère par sa version acceptable ê-->e )<br>
|
||||
|
||||
<code><br>
|
||||
|
||||
> Palindrome élu par
|
||||
cette crapule<br>
|
||||
|
||||
vrai<br>
|
||||
|
||||
</code>
|
||||
<h3><span style="font-weight: bold;">Produit de
|
||||
matrices</span></h3>
|
||||
|
||||
Ecrire un
|
||||
programme Java calculant la somme et le
|
||||
produit de deux matrices carrées de même taille.
|
||||
<pre>> java Matrices 3 1 2 3<br>Erreur de syntaxe !<br>java Matrices n A1...A(n*n) B1...B(n*n)<br>n : taille des matrices<br>A et B : les deux matrices<br>> java Matrices 3 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9<br>Matrice : A<br> 1 4 7<br> 2 5 8<br> 3 6 9<br>Matrice : B<br> 1 4 7<br> 2 5 8<br> 3 6 9<br>Matrice : Somme de A et B<br> 2 8 14<br> 4 10 16<br> 6 12 18<br>Matrice : Produit de A et B<br> 30 66 102<br> 36 81 126<br> 42 96 150</pre>
|
||||
|
||||
<p><span style="font-family: Arial;"></span><span style="font-family: Arial;"></span></p>
|
||||
|
||||
</span>
|
||||
<h3><span style="font-family: Arial;">
|
||||
</span></h3>
|
||||
<h3><span style="font-weight: bold;">Recherche
|
||||
dichotomique</span></h3>
|
||||
|
||||
|
||||
<span style="font-family: Arial;">
|
||||
<p><span style="font-family: Arial;"> </span>Ecrire
|
||||
un programme Java de
|
||||
recherche dichotomique d'un entier dans un tableau trié.</p>
|
||||
|
||||
</span><span style="font-family: Arial;">
|
||||
<blockquote>
|
||||
<pre>> java Dichotomique 23 1 3 7 9 12 23 44 53<br>l'entier 23 se trouve à l'indice 5 du tableau<br>> java Dichotomique 23 1 3 7 9 12 44 53<br>l'entier 23 ne se trouve pas dans le tableau<br><br><br></pre>
|
||||
|
||||
</blockquote>
|
||||
|
||||
<p><span style="font-family: Arial;">
|
||||
<h3><span style="font-weight: bold;">Conversion</span></h3>
|
||||
|
||||
</span><strong></strong>Ecrire un programme Java
|
||||
prenant en paramètre un entier et affichant sa valeur en
|
||||
binaire, on octale et en hexadécimale.</p>
|
||||
|
||||
<blockquote>
|
||||
<pre>> java ConvertEntier 23<br>en binaire : 23 => 10111<br>en octale : 23 => 27<br>en hexadécimale : 23 => 17 <br></pre>
|
||||
|
||||
</blockquote>
|
||||
|
||||
<h3>Un triangle</h3>
|
||||
|
||||
<p><strong>1)</strong> Ecrire un programme qui
|
||||
affiche un triangle isocèle de base 2<var>n</var>-1
|
||||
et de hauteur <var>n</var>. L'entier <var>n</var>
|
||||
et le caractère utilisé pour tracer le triangle
|
||||
sont passés en argument sur la ligne de commande.</p>
|
||||
|
||||
<p><strong>2)</strong> Ajouter une option permettant
|
||||
d'indiquer la direction du triangle : -h = horizontale, -v = verticale.</p>
|
||||
|
||||
<p><strong>3)</strong> Si vous ne l'avez pas
|
||||
déjà fait, ajouter les
|
||||
lignes de commandes nécessaires afin de vérifier
|
||||
les arguments passés
|
||||
sur la ligne de commande : y-a-t-il 3 arguments ? Le premier est-il -h
|
||||
ou -v ? Le second représente-t-il un nombre ? Le
|
||||
troisième ne
|
||||
comporte-t-il qu'un seul caractère ?</p>
|
||||
|
||||
<p>En cas d'erreur, un message sera affiché
|
||||
et le programme terminera en renvoyant un code d'erreur.</p>
|
||||
|
||||
<h4>Exemple d'utilisation</h4>
|
||||
|
||||
<pre>> java Triangle -v 3 A<br>A<br>AA<br>AAA<br>AA<br>A<br>> java Triangle -h 4 $<br> $<br> $$$<br> $$$$$<br>$$$$$$$</pre>
|
||||
|
||||
<span style="font-family: Arial;">
|
||||
<h3><br>
|
||||
|
||||
<span style="font-weight: bold;"></span></h3>
|
||||
|
||||
<h3><br>
|
||||
|
||||
</h3>
|
||||
|
||||
<h3><span style="font-weight: bold;">Mots
|
||||
de 5 lettres </span>:</h3>
|
||||
|
||||
1. Faire un jeu qui permet
|
||||
de jouer aux "mots de 5 lettres" (ou mastermind des mots)<br>
|
||||
|
||||
<ul style="font-family: Arial;">
|
||||
|
||||
<ul>
|
||||
|
||||
<li>L'ordinateur tire au
|
||||
hasard un mot dans une liste de mots de 5 lettres (ex : PORTE)<br>
|
||||
|
||||
</li>
|
||||
|
||||
<li>Le joueur saisit un mot
|
||||
de 5 lettres (ex : RONDE)<br>
|
||||
|
||||
</li>
|
||||
|
||||
<li>L'ordinateur enregistre
|
||||
éventuellement dans sa liste propre ce nouveau mot de 5
|
||||
lettres et affiche au joueur le nombre de lettres correctes
|
||||
à la bonne place et de lettres correctes mal
|
||||
placées (ex : 2,1) <br>
|
||||
|
||||
</li>
|
||||
|
||||
<li>etc...</li>
|
||||
|
||||
<li>Le jeu se termine par la
|
||||
victoire de l'ordinateur si le joueur n'a pas trouvé au
|
||||
10ème coup</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
|
||||
<p>2. Faire en sorte que
|
||||
l'ordinateur puisse jouer aussi et "deviner" le mot choisi par le joueur<br>
|
||||
|
||||
<br>
|
||||
|
||||
</p>
|
||||
|
||||
</span>
|
||||
</span>
|
||||
</body>
|
||||
</html>
|
BIN
G5a/Exercices/5.2-robot-2.pdf
Normal file
BIN
G5a/Exercices/5.2-robot-2.pdf
Normal file
Binary file not shown.
BIN
G5a/Exercices/Confiture.jpg
Normal file
BIN
G5a/Exercices/Confiture.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
BIN
G5a/Exercices/DCA-Adherent.jpg
Normal file
BIN
G5a/Exercices/DCA-Adherent.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
G5a/Exercices/PiecesComposites.pdf
Normal file
BIN
G5a/Exercices/PiecesComposites.pdf
Normal file
Binary file not shown.
BIN
G5a/Materiel/iutsud/Console$ReadException.class
Normal file
BIN
G5a/Materiel/iutsud/Console$ReadException.class
Normal file
Binary file not shown.
BIN
G5a/Materiel/iutsud/Console.class
Normal file
BIN
G5a/Materiel/iutsud/Console.class
Normal file
Binary file not shown.
649
G5a/Materiel/iutsud/Console.java
Normal file
649
G5a/Materiel/iutsud/Console.java
Normal file
@ -0,0 +1,649 @@
|
||||
package iutsud ;
|
||||
|
||||
import java.io.BufferedReader ;
|
||||
import java.io.InputStreamReader ;
|
||||
|
||||
/**
|
||||
* Cette classe fournit des m<>thodes simples pour lire les types
|
||||
* de base sur l'entr<74>e standard (au clavier).<p>
|
||||
* La lecture est faite par des instructions du type :
|
||||
* <pre><code> int i = Console.<b>readInt()</b> ;
|
||||
* double d = Console.<b>readDouble()</b> ;
|
||||
* char c = Console.<b>readChar()</b> ;
|
||||
* ...</code> </pre>
|
||||
*
|
||||
* <li>Le principe g<>n<EFBFBD>ral est de lire ligne par ligne et de ne traiter
|
||||
* qu'une seule donn<6E>e par ligne.
|
||||
* <li>En cas d'erreur le programme est arr<72>t<EFBFBD> en levant une exception ;
|
||||
* il affiche alors un message d'erreur ainsi que le contenu de la pile d'ex<65>cution.
|
||||
* <li>L'introduction d'une ligne vide provoque une erreur sauf pour <code>readChar()</code>
|
||||
* qui renvoie le caract<63>re de fin de ligne <code>'\n'</code>, et sauf pour <code>readLine()</code>
|
||||
* qui renvoie la cha<68>ne vide.
|
||||
* <li>La rencontre de la fin de fichier (Ctrl-D au clavier) est g<>n<EFBFBD>ralement
|
||||
* consid<69>r<EFBFBD>e comme une erreur sauf pour <code>readLine()</code> qui renvoie <code>null</code>.
|
||||
* <p>
|
||||
* Le point de d<>part a <20>t<EFBFBD> la classe <code>sdsu.io.Console</code> de l'universit<69>
|
||||
* de San Diego (<a href="http://www.eli.sdsu.edu/java-SDSU">http://www.eli.sdsu.edu/java-SDSU</a>).
|
||||
* Cette classe a <20>t<EFBFBD> simplifi<66>e pour r<>pondre <20> nos besoins particuliers pour
|
||||
* l'enseignement de l'introduction <20> l'algorithmique.
|
||||
* Le code a <20>t<EFBFBD> enti<74>rement remani<6E> pour utiliser les fonctions de
|
||||
* conversion du langage Java.
|
||||
* Des am<61>liorations pourraient certainement y <20>tre apport<72>es en utilisant
|
||||
* la classe <code>Number</code> notamment pour les probl<62>mes d'internationalisation,
|
||||
* li<6C>s <20> l'<27>criture des nombres en <b>virgule</b> flottante.
|
||||
* <p>
|
||||
*
|
||||
* <b>Utilisation</b> : <p>
|
||||
* <li>Le fichier <code>Console.class</code> se trouve sous le r<>pertoire
|
||||
* <code>/usr/local/lib/java/iutsud</code>.
|
||||
* <li>La variable <code>CLASSPATH</code> doit contenir
|
||||
* <code>/usr/local/lib/java</code>. Sur <i>sterne</i> elle est initialis<69>e
|
||||
* automatiquement au d<>marrage de la session avec cette valeur.
|
||||
* <li>Les classes utilisatrices doivent importer la classe
|
||||
* <code>Console</code> depuis le package <code>iutsud</code> par l'instruction
|
||||
* <code>import iutsud.Console</code>
|
||||
*
|
||||
*
|
||||
* <p>Le document de pr<70>sentation peut <20>tre g<>n<EFBFBD>r<EFBFBD> depuis le source par la commande : <br>
|
||||
* <code> javadoc -version -author iutsud</code>
|
||||
* @author Raymond Schneider
|
||||
* (<a href=mailto:Raymond.Schneider@iutsud.u-strasbg.fr>Raymond.Schneider@iutsud.u-strasbg.fr</a>)
|
||||
* @version version 0.1 17/07/98
|
||||
*/
|
||||
|
||||
public class Console {
|
||||
|
||||
private static BufferedReader cin = new BufferedReader(
|
||||
new InputStreamReader(
|
||||
System.in )) ;
|
||||
|
||||
|
||||
private static void main(String args[]) {
|
||||
|
||||
while (true) {
|
||||
|
||||
System.out.print( "Print a Base ");
|
||||
int base = Console.readInt() ;
|
||||
System.out.print( "Print a Long in base " + base + " : ") ;
|
||||
long lb = Console.readLong(base) ;
|
||||
System.out.println( "You typed: " + lb );
|
||||
|
||||
System.out.print( "Print a Byte ");
|
||||
byte k = Console.readByte() ;
|
||||
System.out.println( "You typed: " + k );
|
||||
|
||||
System.out.print( "Print a Short ");
|
||||
int j = Console.readShort() ;
|
||||
System.out.println( "You typed: " + j );
|
||||
|
||||
System.out.print( "Print a Int ");
|
||||
int i = Console.readInt() ;
|
||||
System.out.println( "You typed: " + i );
|
||||
|
||||
System.out.print( "Print a Long ");
|
||||
long l = Console.readLong() ;
|
||||
System.out.println( "You typed: " + l );
|
||||
|
||||
System.out.print( "Print a Float ");
|
||||
float f = Console.readFloat() ;
|
||||
System.out.println( "You typed: " + f );
|
||||
|
||||
System.out.print( "Print a Double ");
|
||||
double d = Console.readDouble() ;
|
||||
System.out.println( "You typed: " + d );
|
||||
|
||||
System.out.print( "Print a Boolean ");
|
||||
boolean b = Console.readBoolean() ;
|
||||
System.out.println( "You typed: " + b );
|
||||
|
||||
System.out.print( "Print a Char ");
|
||||
char c = Console.readChar() ;
|
||||
System.out.println( "You typed: " + c );
|
||||
}
|
||||
}
|
||||
|
||||
private Console()
|
||||
{
|
||||
super() ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Exception lev<65>e lors d'une erreur de lecture
|
||||
*/
|
||||
|
||||
public static class ReadException extends RuntimeException
|
||||
{
|
||||
public ReadException(String message)
|
||||
{
|
||||
super(message) ;
|
||||
}
|
||||
} // end class ReadException
|
||||
|
||||
/**
|
||||
* Exception lev<65>e lors d'une erreur de conversion
|
||||
*/
|
||||
|
||||
public static class ConvertionException extends RuntimeException
|
||||
{
|
||||
public ConvertionException(String message)
|
||||
{
|
||||
super(message) ;
|
||||
}
|
||||
} // end class ConvertionException
|
||||
|
||||
|
||||
/**
|
||||
* Quitte le programme en levant l'exception e
|
||||
* Le syst<73>me affichera<72> le message d'erreur associ<63>
|
||||
* ainsi que la pile d'ecx<63>cution
|
||||
* @param e l'exception <20> lever
|
||||
*/
|
||||
|
||||
/*
|
||||
* Exits programs after throwing an exception
|
||||
* @param e exception to be thrown
|
||||
*/
|
||||
|
||||
static final void exitProgram( RuntimeException e )
|
||||
{
|
||||
throw e ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Quitte le programme suite <20> une erreur de conversion ;
|
||||
* affiche un message d'erreur en levant l'exception
|
||||
* <code>Console.ConvertionException</code>
|
||||
* @param s la cha<68>ne <20> convertir
|
||||
* @param t le type vers lequel il fallait convertir
|
||||
*/
|
||||
|
||||
/*
|
||||
* Exits programs after displaying a conversion error message
|
||||
* and after dumping the Thread's stack
|
||||
* @param s String that could not be converted
|
||||
* @param t Conversion Destination Type
|
||||
*/
|
||||
|
||||
private static final void conversionError( String s , String t )
|
||||
{
|
||||
exitProgram( new ConvertionException(
|
||||
conversionErrorMessage( s , t ) ) ) ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Quitte le programme suite <20> une erreur de lecture ;
|
||||
* affiche un message d'erreur en levant l'exception
|
||||
* <code>Console.ReadException</code>
|
||||
* @param s la raison de l'erreur <20> afficher
|
||||
* @param t le type lu
|
||||
*/
|
||||
|
||||
/*
|
||||
* Exits programs after displaying a conversion error message
|
||||
* and after dumping the Thread's stack
|
||||
* @param s the error cause
|
||||
* @param t Read Destination Type
|
||||
*/
|
||||
|
||||
private static final void readError( String s , String t )
|
||||
{
|
||||
exitProgram( new ReadException ( s + " lors de la lecture d'un " + t) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Compose le message d'erreur <20> afficher suite <20> une erreur de conversion ;
|
||||
* @param s la cha<68>ne <20> convertir
|
||||
* @param t le type vers lequel il fallait convertir
|
||||
*/
|
||||
|
||||
/*
|
||||
* Bulids a conversion error message
|
||||
* @param s String that could not be converted
|
||||
* @param t Conversion Destination Type
|
||||
*/
|
||||
|
||||
private static String conversionErrorMessage( String s, String t )
|
||||
{
|
||||
return '"' + s + '"' + " ne peut <20>tre convertie en " + t ;
|
||||
}
|
||||
|
||||
// Input methods ----------------------------------------------------
|
||||
|
||||
/**
|
||||
* Lit une valeur bool<6F>enne dans une ligne.
|
||||
* Lit une ligne et d<>termine si elle repr<70>sente <code>true</code> ou <code>false</code>.
|
||||
* Les valeurs possibles sont : <i>true</i> and <i>false</i>,
|
||||
* <i>vrai</i> and <i>faux</i>.
|
||||
* La comparaison est insensible <20> la casse (majuscule, minuscule).
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur de lecture ou en fin de fichier
|
||||
* @return la valeur bool<6F>ene correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII boolean value.
|
||||
* It reads a word and determines if it represents <code>true</code> or
|
||||
* <code>false</code>. Possible values are: <i>true</i> and <i>false</i>,
|
||||
* <i>vrai</i> and <i>faux</i>.
|
||||
* The comparison is case insensitive.
|
||||
* Program exits on read errors or EOF
|
||||
* @return the boolean.
|
||||
*/
|
||||
|
||||
public static boolean readBoolean()
|
||||
{
|
||||
boolean b = false ;
|
||||
String s ;
|
||||
|
||||
s= readLine("boolean") ;
|
||||
|
||||
if (s.equalsIgnoreCase(String.valueOf(false))
|
||||
|| s.equalsIgnoreCase("faux") )
|
||||
b= false;
|
||||
|
||||
else if (s.equalsIgnoreCase(String.valueOf(true))
|
||||
|| s.equalsIgnoreCase("vrai") )
|
||||
b= true;
|
||||
|
||||
else
|
||||
conversionError( s , "boolean" ) ;
|
||||
|
||||
return b;
|
||||
|
||||
} // end readBoolean
|
||||
|
||||
/**
|
||||
* Lit un caract<63>re dans une ligne.
|
||||
* La ligne lue doit contenir au maximum un caract<63>re.
|
||||
* Si la ligne est vide le caract<63>re <code>'\n'</code> est renvoy<6F>.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur de lecture ou en fin de fichier
|
||||
* ou encore si la ligne contenait plusieurs caract<63>res.
|
||||
* @return le caract<63>re lu ou <code>'\n'</code> si la ligne <20>tait vide.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads one ASCII character and convert it into the internal <code>char</code>
|
||||
* format. If the line is empty <code>'\n'</code> is returned.
|
||||
* If more than one character are available in the line, only the first one is returned ; all other are
|
||||
* ignored.
|
||||
* Program exits on read errors or EOF or if more characters are available
|
||||
* @return the character or <code>'\n'</code> if line was empty.
|
||||
*/
|
||||
|
||||
public static char readChar()
|
||||
{
|
||||
String s ;
|
||||
char c = '\n' ;
|
||||
|
||||
s= readNewLine("char");
|
||||
|
||||
if (s.length() == 1)
|
||||
c= s.charAt(0);
|
||||
else if ( s.length() != 0 )
|
||||
exitProgram( new ReadException(
|
||||
"La ligne lue contenait plus d'un caract<63>re : "
|
||||
+ '"' + s + '"' + '\n' )
|
||||
);
|
||||
|
||||
return c ;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un nombre en virgule flottante et en double pr<70>cision dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>double</code> en Java et permettre la conversion par :
|
||||
* <code>Double(String).doubleValue()</code>
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>double</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal floating point number.
|
||||
* A floating point number should obey Java String conversion :
|
||||
* <code>Double(String).doubleValue()</code>
|
||||
* Program exits on read errors or EOF
|
||||
* @return the double.
|
||||
*/
|
||||
|
||||
public static double readDouble()
|
||||
{
|
||||
String s ;
|
||||
double d = 0.0 ;
|
||||
|
||||
s= readLine("double");
|
||||
|
||||
try
|
||||
{
|
||||
d = new Double(s).doubleValue() ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, "double");
|
||||
}
|
||||
|
||||
return d ;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un nombre en virgule flottante et en simple pr<70>cision dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>float</code> en Java et permettre la conversion par :
|
||||
* <code>Float(String).floatValue()</code>
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>float</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal floating point number.
|
||||
* A floating point number should obey Java String conversion :
|
||||
* <code>Float(String).floatValue()</code>
|
||||
* Program exits on read errors or EOF
|
||||
* @return the double.
|
||||
*/
|
||||
|
||||
public static float readFloat()
|
||||
{
|
||||
String s ;
|
||||
float f = 0.0F ;
|
||||
|
||||
s= readLine("float");
|
||||
|
||||
try
|
||||
{
|
||||
f = new Float(s).floatValue() ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, "float" );
|
||||
}
|
||||
|
||||
return f ;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un nombre entier dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>int</code> en Java et permettre la conversion par :
|
||||
* <code>Integer.parseInt(String)</code>.
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>int</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal integer conforming to <code>Integer.parseInt(String)</code>.
|
||||
* Integers can be preceded by optional whitespace (SPACE or TAB).
|
||||
* Program exits on read errors or EOF
|
||||
* @return the integer.
|
||||
*/
|
||||
|
||||
public static int readInt()
|
||||
{
|
||||
int i = 0 ;
|
||||
String s ;
|
||||
|
||||
s= readLine("int");
|
||||
|
||||
try
|
||||
{
|
||||
i = Integer.parseInt(s) ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, "int" );
|
||||
}
|
||||
|
||||
return i ;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un nombre entier long <20>crit en base <code>b</code> dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>long</code> en Java et permettre la conversion par :
|
||||
* <code>Long.parseLong(String,b)</code>
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @param b la base dans laquelle l'entier lu est exprim<69>
|
||||
* @return la valeur <code>long</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII long expressed in base <code>b</code> and conforming
|
||||
* to <code>Long.parseLong(String,b)</code>
|
||||
* Longs can be preceded by optional whitespace (SPACE or TAB).
|
||||
* Program exits on read errors or EOF
|
||||
* @param b the numbering base used to make the conversion
|
||||
* @return the long.
|
||||
*/
|
||||
|
||||
public static long readLong(int b)
|
||||
{
|
||||
long l = 0L;
|
||||
String s ;
|
||||
String t = "long" ;
|
||||
|
||||
if ( b != 10)
|
||||
t= t + " in base " + b ;
|
||||
|
||||
s= readLine(t);
|
||||
|
||||
|
||||
try
|
||||
{
|
||||
l = Long.parseLong(s, b) ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, t) ;
|
||||
}
|
||||
|
||||
return l ;
|
||||
|
||||
}
|
||||
/**
|
||||
* Lit un nombre entier long dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>long</code> en Java et permettre la conversion par :
|
||||
* <code>Long.parseLong(String)</code>
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>long</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal long conforming to <code>Long.parseLong(String)</code>
|
||||
* Longs can be preceded by optional whitespace (SPACE or TAB).
|
||||
* Program exits on read errors or EOF
|
||||
* @return the long.
|
||||
*/
|
||||
|
||||
public static long readLong()
|
||||
{
|
||||
return readLong(10) ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un nombre entier court dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>short</code> en Java et permettre la conversion par :
|
||||
* <code>Short.parseShort(String)</code>
|
||||
* Le nombre peut tre pre<72>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>short</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal short.
|
||||
* Shorts can be preceded by optional whitespace (SPACE or TAB).
|
||||
* Program exits on read errors or EOF
|
||||
* @return the short.
|
||||
*/
|
||||
|
||||
public static short readShort()
|
||||
{
|
||||
short j = 0 ;
|
||||
String s = readLine("short");
|
||||
|
||||
try
|
||||
{
|
||||
j = Short.parseShort(s) ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, "short" );
|
||||
}
|
||||
|
||||
return j ;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit un octet dans une ligne.
|
||||
* Ces nombres doivent <20>tre conforme <20> l'<27>criture standard des constantes
|
||||
* <code>byte</code> en Java et permettre la conversion par :
|
||||
* <code>Byte.parseByte(String)</code>
|
||||
* Le nombre peut <20>tre pr<70>c<EFBFBD>d<EFBFBD> ou suivi d'un nombre quelconque d'espaces
|
||||
* (SPACE ou TAB). La ligne lue ne doit comporter qu'un seul nombre.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur ou en fin de fichier
|
||||
* @return la valeur <code>byte</code> correspondante.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads an ASCII decimal byte.
|
||||
* Bytes can be preceded by optional whitespace (SPACE or TAB).
|
||||
* Program exits on read errors or EOF
|
||||
* @return the byte.
|
||||
*/
|
||||
|
||||
public static byte readByte()
|
||||
{
|
||||
byte b = 0 ;
|
||||
String s = readLine("byte");
|
||||
|
||||
try
|
||||
{
|
||||
b = Byte.parseByte(s) ;
|
||||
}
|
||||
catch (NumberFormatException e)
|
||||
{
|
||||
conversionError( s, "byte" );
|
||||
}
|
||||
|
||||
return b ;
|
||||
|
||||
}
|
||||
/**
|
||||
* Lit une ligne.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur de lecture.
|
||||
* @return une cha<68>ne indiquant le contenu de la ligne ou
|
||||
* une cha<68>ne vide lorsque la ligne <20>tait vide ou
|
||||
* <code>null</code> en fin de fichier .
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads a line.
|
||||
* Program exits on read errors
|
||||
* @return the line content or an empty string if nothing entered or <code>null</code> if EOF reached .
|
||||
*/
|
||||
|
||||
public static String readLine()
|
||||
{
|
||||
String s = null ;
|
||||
|
||||
try
|
||||
{
|
||||
s= cin.readLine();
|
||||
}
|
||||
catch ( java.io.EOFException error)
|
||||
{
|
||||
s = null ;
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
exitProgram( new RuntimeException(error.toString()) ) ;
|
||||
}
|
||||
|
||||
return s ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit une nouvelle ligne.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur de lecture ou si la fin de fichier
|
||||
* est rencontr<74>e.
|
||||
* @param t cha<68>ne indiquant le type de la donn<6E>e lue dans cette ligne
|
||||
* @return une cha<68>ne indiquant le contenu de la ligne ou
|
||||
* une cha<68>ne vide lorsque la ligne <20>tait vide .
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads a new line.
|
||||
* Program exits on read errors or if EOF is reached.
|
||||
* @param t String indicating the type expected in the line
|
||||
* @return the line content or an empty string if nothing entered .
|
||||
*/
|
||||
|
||||
private static String readNewLine(String t)
|
||||
{
|
||||
String s ;
|
||||
|
||||
s= readLine() ;
|
||||
|
||||
if ( s == null)
|
||||
readError ( " Fin de fichier inattendue" , t) ;
|
||||
|
||||
return s ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Lit une donn<6E>e de type <code>t</code> dans une ligne non vide.
|
||||
*
|
||||
* Le programme stoppe en cas d'erreur de lecture, de fin de fichier
|
||||
* ou si la ligne <20>tait vide.
|
||||
* @param t cha<68>ne indiquant le type de la donn<6E>e lue dans cette ligne
|
||||
* @return une cha<68>ne indiquant le contenu non vide de la ligne.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Reads a data of type <code>t</code> in a non empty line.
|
||||
* Program exits on read errors or EOF or if line is empty
|
||||
* @param t String indicating the type expected in the line
|
||||
* @return the non empty line content
|
||||
*/
|
||||
|
||||
private static String readLine(String t)
|
||||
{
|
||||
String s ;
|
||||
|
||||
s= readNewLine(t).trim() ;
|
||||
|
||||
if (s.length() == 0)
|
||||
readError ( " Ligne vide" , t) ;
|
||||
|
||||
return s ;
|
||||
}
|
||||
|
||||
|
||||
|
||||
} // end class Console
|
BIN
G5a/Materiel/iutsud/iutsud.zip
Normal file
BIN
G5a/Materiel/iutsud/iutsud.zip
Normal file
Binary file not shown.
BIN
G5a/Projet/ProjetPourAnciensDUT.pdf
Normal file
BIN
G5a/Projet/ProjetPourAnciensDUT.pdf
Normal file
Binary file not shown.
6
G5a/Puissance4/.classpath
Normal file
6
G5a/Puissance4/.classpath
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path=""/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="output" path=""/>
|
||||
</classpath>
|
17
G5a/Puissance4/.project
Normal file
17
G5a/Puissance4/.project
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Puissance4</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
39
G5a/Puissance4/doc/allclasses-frame.html
Normal file
39
G5a/Puissance4/doc/allclasses-frame.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
All Classes
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||
<B>All Classes</B></FONT>
|
||||
<BR>
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau" target="classFrame">AideSaisie</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau" target="classFrame">IhmPuissance4</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau" target="classFrame">Jeton</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau" target="classFrame">Joueurs</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau" target="classFrame">PlateauPuissance4</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
39
G5a/Puissance4/doc/allclasses-noframe.html
Normal file
39
G5a/Puissance4/doc/allclasses-noframe.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
All Classes
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||
<B>All Classes</B></FONT>
|
||||
<BR>
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau">AideSaisie</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">IhmPuissance4</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<BR>
|
||||
<A HREF="fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
144
G5a/Puissance4/doc/constant-values.html
Normal file
144
G5a/Puissance4/doc/constant-values.html
Normal file
@ -0,0 +1,144 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Constant Field Values
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Constant Field Values";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H1>
|
||||
Constant Field Values</H1>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
<B>Contents</B><UL>
|
||||
</UL>
|
||||
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
144
G5a/Puissance4/doc/deprecated-list.html
Normal file
144
G5a/Puissance4/doc/deprecated-list.html
Normal file
@ -0,0 +1,144 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Deprecated List
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Deprecated List";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Deprecated API</B></H2>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
<B>Contents</B><UL>
|
||||
</UL>
|
||||
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
256
G5a/Puissance4/doc/fr/blankoworld/plateau/AideSaisie.html
Normal file
256
G5a/Puissance4/doc/fr/blankoworld/plateau/AideSaisie.html
Normal file
@ -0,0 +1,256 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:50 CET 2007 -->
|
||||
<TITLE>
|
||||
AideSaisie
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="AideSaisie";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AideSaisie.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/AideSaisie.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AideSaisie.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
fr.blankoworld.plateau</FONT>
|
||||
<BR>
|
||||
Class AideSaisie</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>fr.blankoworld.plateau.AideSaisie</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>AideSaisie</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
Aide a la recuperation des donnees saisies en console par l'utilisateur
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/AideSaisie.html#AideSaisie()">AideSaisie</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/AideSaisie.html#getEntreeUtilisateur(java.lang.String)">getEntreeUtilisateur</A></B>(java.lang.String prompt)</CODE>
|
||||
|
||||
<BR>
|
||||
Recupere l'entree de console, c'est a dire les donnees saisies par l'utilisateur par la clavier, dans une console</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="AideSaisie()"><!-- --></A><H3>
|
||||
AideSaisie</H3>
|
||||
<PRE>
|
||||
public <B>AideSaisie</B>()</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getEntreeUtilisateur(java.lang.String)"><!-- --></A><H3>
|
||||
getEntreeUtilisateur</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getEntreeUtilisateur</B>(java.lang.String prompt)</PRE>
|
||||
<DL>
|
||||
<DD>Recupere l'entree de console, c'est a dire les donnees saisies par l'utilisateur par la clavier, dans une console
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AideSaisie.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/AideSaisie.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AideSaisie.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
402
G5a/Puissance4/doc/fr/blankoworld/plateau/IhmPuissance4.html
Normal file
402
G5a/Puissance4/doc/fr/blankoworld/plateau/IhmPuissance4.html
Normal file
File diff suppressed because one or more lines are too long
301
G5a/Puissance4/doc/fr/blankoworld/plateau/Jeton.html
Normal file
301
G5a/Puissance4/doc/fr/blankoworld/plateau/Jeton.html
Normal file
@ -0,0 +1,301 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Jeton
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Jeton";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Jeton.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/Jeton.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Jeton.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
fr.blankoworld.plateau</FONT>
|
||||
<BR>
|
||||
Class Jeton</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>fr.blankoworld.plateau.Jeton</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>Jeton</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
Permet de creer des jetons pour le Blankuissance 4
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Jeton.html#Jeton(java.lang.String)">Jeton</A></B>(java.lang.String colorimetrie)</CODE>
|
||||
|
||||
<BR>
|
||||
Instanciation d'un nouveau jeton avec une couleur particuliere</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> boolean</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Jeton.html#estMemeCouleur(fr.blankoworld.plateau.Jeton)">estMemeCouleur</A></B>(<A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A> jtn)</CODE>
|
||||
|
||||
<BR>
|
||||
Compare le jeton actuel et un autre jeton donne en parametre</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Jeton.html#getCouleur()">getCouleur</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Recupere la couleur du jeton</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Jeton.html#setCouleur(java.lang.String)">setCouleur</A></B>(java.lang.String clr)</CODE>
|
||||
|
||||
<BR>
|
||||
Donne une couleur au jeton</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="Jeton(java.lang.String)"><!-- --></A><H3>
|
||||
Jeton</H3>
|
||||
<PRE>
|
||||
public <B>Jeton</B>(java.lang.String colorimetrie)</PRE>
|
||||
<DL>
|
||||
<DD>Instanciation d'un nouveau jeton avec une couleur particuliere
|
||||
<P>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getCouleur()"><!-- --></A><H3>
|
||||
getCouleur</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getCouleur</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Recupere la couleur du jeton
|
||||
<P>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>couleur du jeton</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setCouleur(java.lang.String)"><!-- --></A><H3>
|
||||
setCouleur</H3>
|
||||
<PRE>
|
||||
public void <B>setCouleur</B>(java.lang.String clr)</PRE>
|
||||
<DL>
|
||||
<DD>Donne une couleur au jeton
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="estMemeCouleur(fr.blankoworld.plateau.Jeton)"><!-- --></A><H3>
|
||||
estMemeCouleur</H3>
|
||||
<PRE>
|
||||
public boolean <B>estMemeCouleur</B>(<A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A> jtn)</PRE>
|
||||
<DL>
|
||||
<DD>Compare le jeton actuel et un autre jeton donne en parametre
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Jeton.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/Jeton.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Jeton.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
364
G5a/Puissance4/doc/fr/blankoworld/plateau/Joueurs.html
Normal file
364
G5a/Puissance4/doc/fr/blankoworld/plateau/Joueurs.html
Normal file
@ -0,0 +1,364 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Joueurs
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Joueurs";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Joueurs.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/Joueurs.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Joueurs.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
fr.blankoworld.plateau</FONT>
|
||||
<BR>
|
||||
Class Joueurs</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>fr.blankoworld.plateau.Joueurs</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>Joueurs</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
Permet de creer des joueurs de Blankuissance 4 avec leur jeton
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#s_nombreJoueurs">s_nombreJoueurs</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
Nombre de joueurs instancies</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#Joueurs(java.lang.String, java.lang.String)">Joueurs</A></B>(java.lang.String nom,
|
||||
java.lang.String couleur)</CODE>
|
||||
|
||||
<BR>
|
||||
Constructeur de la classe Joueurs</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A></CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#donneJeton()">donneJeton</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Avez vous besoin du jeton du joueur ?</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#getNom()">getNom</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Recupere le nom du joueur</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#setNom(java.lang.String)">setNom</A></B>(java.lang.String nom)</CODE>
|
||||
|
||||
<BR>
|
||||
Permet de changer/donner le nom du joueur</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html#toString()">toString</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Methode qui retourne le nom du joueur et la couleur du joueur en cours</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ FIELD DETAIL =========== -->
|
||||
|
||||
<A NAME="field_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Field Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="s_nombreJoueurs"><!-- --></A><H3>
|
||||
s_nombreJoueurs</H3>
|
||||
<PRE>
|
||||
public int <B>s_nombreJoueurs</B></PRE>
|
||||
<DL>
|
||||
<DD>Nombre de joueurs instancies
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="Joueurs(java.lang.String, java.lang.String)"><!-- --></A><H3>
|
||||
Joueurs</H3>
|
||||
<PRE>
|
||||
public <B>Joueurs</B>(java.lang.String nom,
|
||||
java.lang.String couleur)</PRE>
|
||||
<DL>
|
||||
<DD>Constructeur de la classe Joueurs
|
||||
<P>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="toString()"><!-- --></A><H3>
|
||||
toString</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>toString</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Methode qui retourne le nom du joueur et la couleur du joueur en cours
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getNom()"><!-- --></A><H3>
|
||||
getNom</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getNom</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Recupere le nom du joueur
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setNom(java.lang.String)"><!-- --></A><H3>
|
||||
setNom</H3>
|
||||
<PRE>
|
||||
public void <B>setNom</B>(java.lang.String nom)</PRE>
|
||||
<DL>
|
||||
<DD>Permet de changer/donner le nom du joueur
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="donneJeton()"><!-- --></A><H3>
|
||||
donneJeton</H3>
|
||||
<PRE>
|
||||
public <A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A> <B>donneJeton</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Avez vous besoin du jeton du joueur ? Oui ? Alors vous etes au bon endroit
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Joueurs.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/Joueurs.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Joueurs.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
554
G5a/Puissance4/doc/fr/blankoworld/plateau/PlateauPuissance4.html
Normal file
554
G5a/Puissance4/doc/fr/blankoworld/plateau/PlateauPuissance4.html
Normal file
@ -0,0 +1,554 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
PlateauPuissance4
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="PlateauPuissance4";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PlateauPuissance4.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/PlateauPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlateauPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
fr.blankoworld.plateau</FONT>
|
||||
<BR>
|
||||
Class PlateauPuissance4</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>fr.blankoworld.plateau.PlateauPuissance4</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>PlateauPuissance4</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
Classe plateau qui permet de creer un plateau de jeu
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#nbreColonnes">nbreColonnes</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#nbreLignes">nbreLignes</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#PlateauPuissance4()">PlateauPuissance4</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#afficherGrille()">afficherGrille</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Affiche la grille de jeu</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#ajoutPion(int, java.lang.String)">ajoutPion</A></B>(int positionColonne,
|
||||
java.lang.String couleur)</CODE>
|
||||
|
||||
<BR>
|
||||
Ajoute un pion dans la colonne choisie en donnant la couleur dudit pion</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#alterneJoueur(fr.blankoworld.plateau.Joueurs, fr.blankoworld.plateau.Joueurs)">alterneJoueur</A></B>(<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jUn,
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jDeux)</CODE>
|
||||
|
||||
<BR>
|
||||
On recupere le joueur qui doit jouer</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#estAligne(int, int, int, int)">estAligne</A></B>(int X,
|
||||
int Y,
|
||||
int colonneChoisie,
|
||||
int positionPion)</CODE>
|
||||
|
||||
<BR>
|
||||
Renvoie le nombre de pions de meme couleur alignes</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> boolean</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#gagnant(int, int)">gagnant</A></B>(int colonneChoisie,
|
||||
int positionPion)</CODE>
|
||||
|
||||
<BR>
|
||||
Determine si le pion pose donne un jeu gagnant au joueur qui l'a pose ou pas</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.util.Vector</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#getJoueurs()">getJoueurs</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
On recupere une collection de joueurs sous forme de Vecteurs</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#getPosition(int)">getPosition</A></B>(int colonne)</CODE>
|
||||
|
||||
<BR>
|
||||
Permet de recuperer la position du pion dans une colonne donnee</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#initialiser()">initialiser</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Initialisation des variables, des joueurs, de la grille, etc ...</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#lancer()">lancer</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
C'est ici que le jeu se deroule, que les appels sont faits, etc ...</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#main(java.lang.String[])">main</A></B>(java.lang.String[] args)</CODE>
|
||||
|
||||
<BR>
|
||||
Methode principale MAIN</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#reinitialiser()">reinitialiser</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Permet de relancer le jeu (prevu pour l'ajout supplementaire d'un menu)</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html#setAlternanceJoueur()">setAlternanceJoueur</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Affirme que nous changeons de joueurs (ce qui n'inclue pas le fait que nous ayons a le recuperer !)</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ FIELD DETAIL =========== -->
|
||||
|
||||
<A NAME="field_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Field Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="nbreColonnes"><!-- --></A><H3>
|
||||
nbreColonnes</H3>
|
||||
<PRE>
|
||||
public int <B>nbreColonnes</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="nbreLignes"><!-- --></A><H3>
|
||||
nbreLignes</H3>
|
||||
<PRE>
|
||||
public int <B>nbreLignes</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="PlateauPuissance4()"><!-- --></A><H3>
|
||||
PlateauPuissance4</H3>
|
||||
<PRE>
|
||||
public <B>PlateauPuissance4</B>()</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="main(java.lang.String[])"><!-- --></A><H3>
|
||||
main</H3>
|
||||
<PRE>
|
||||
public static void <B>main</B>(java.lang.String[] args)</PRE>
|
||||
<DL>
|
||||
<DD>Methode principale MAIN
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="initialiser()"><!-- --></A><H3>
|
||||
initialiser</H3>
|
||||
<PRE>
|
||||
public void <B>initialiser</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Initialisation des variables, des joueurs, de la grille, etc ...
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="reinitialiser()"><!-- --></A><H3>
|
||||
reinitialiser</H3>
|
||||
<PRE>
|
||||
public void <B>reinitialiser</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Permet de relancer le jeu (prevu pour l'ajout supplementaire d'un menu)
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="afficherGrille()"><!-- --></A><H3>
|
||||
afficherGrille</H3>
|
||||
<PRE>
|
||||
public void <B>afficherGrille</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Affiche la grille de jeu
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="lancer()"><!-- --></A><H3>
|
||||
lancer</H3>
|
||||
<PRE>
|
||||
public void <B>lancer</B>()</PRE>
|
||||
<DL>
|
||||
<DD>C'est ici que le jeu se deroule, que les appels sont faits, etc ...
|
||||
Tout est la !
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="alterneJoueur(fr.blankoworld.plateau.Joueurs, fr.blankoworld.plateau.Joueurs)"><!-- --></A><H3>
|
||||
alterneJoueur</H3>
|
||||
<PRE>
|
||||
public <A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> <B>alterneJoueur</B>(<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jUn,
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jDeux)</PRE>
|
||||
<DL>
|
||||
<DD>On recupere le joueur qui doit jouer
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="ajoutPion(int, java.lang.String)"><!-- --></A><H3>
|
||||
ajoutPion</H3>
|
||||
<PRE>
|
||||
public void <B>ajoutPion</B>(int positionColonne,
|
||||
java.lang.String couleur)</PRE>
|
||||
<DL>
|
||||
<DD>Ajoute un pion dans la colonne choisie en donnant la couleur dudit pion
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="gagnant(int, int)"><!-- --></A><H3>
|
||||
gagnant</H3>
|
||||
<PRE>
|
||||
public boolean <B>gagnant</B>(int colonneChoisie,
|
||||
int positionPion)</PRE>
|
||||
<DL>
|
||||
<DD>Determine si le pion pose donne un jeu gagnant au joueur qui l'a pose ou pas
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="estAligne(int, int, int, int)"><!-- --></A><H3>
|
||||
estAligne</H3>
|
||||
<PRE>
|
||||
public int <B>estAligne</B>(int X,
|
||||
int Y,
|
||||
int colonneChoisie,
|
||||
int positionPion)</PRE>
|
||||
<DL>
|
||||
<DD>Renvoie le nombre de pions de meme couleur alignes
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getPosition(int)"><!-- --></A><H3>
|
||||
getPosition</H3>
|
||||
<PRE>
|
||||
public int <B>getPosition</B>(int colonne)</PRE>
|
||||
<DL>
|
||||
<DD>Permet de recuperer la position du pion dans une colonne donnee
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getJoueurs()"><!-- --></A><H3>
|
||||
getJoueurs</H3>
|
||||
<PRE>
|
||||
public java.util.Vector <B>getJoueurs</B>()</PRE>
|
||||
<DL>
|
||||
<DD>On recupere une collection de joueurs sous forme de Vecteurs
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAlternanceJoueur()"><!-- --></A><H3>
|
||||
setAlternanceJoueur</H3>
|
||||
<PRE>
|
||||
public void <B>setAlternanceJoueur</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Affirme que nous changeons de joueurs (ce qui n'inclue pas le fait que nous ayons a le recuperer !)
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PlateauPuissance4.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/PlateauPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlateauPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
@ -0,0 +1,142 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Class fr.blankoworld.plateau.AideSaisie
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class fr.blankoworld.plateau.AideSaisie";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useAideSaisie.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AideSaisie.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Class<br>fr.blankoworld.plateau.AideSaisie</B></H2>
|
||||
</CENTER>
|
||||
No usage of fr.blankoworld.plateau.AideSaisie
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useAideSaisie.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AideSaisie.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
@ -0,0 +1,142 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Class fr.blankoworld.plateau.IhmPuissance4
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class fr.blankoworld.plateau.IhmPuissance4";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useIhmPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="IhmPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Class<br>fr.blankoworld.plateau.IhmPuissance4</B></H2>
|
||||
</CENTER>
|
||||
No usage of fr.blankoworld.plateau.IhmPuissance4
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useIhmPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="IhmPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
181
G5a/Puissance4/doc/fr/blankoworld/plateau/class-use/Jeton.html
Normal file
181
G5a/Puissance4/doc/fr/blankoworld/plateau/class-use/Jeton.html
Normal file
@ -0,0 +1,181 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Class fr.blankoworld.plateau.Jeton
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class fr.blankoworld.plateau.Jeton";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useJeton.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Jeton.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Class<br>fr.blankoworld.plateau.Jeton</B></H2>
|
||||
</CENTER>
|
||||
<A NAME="fr.blankoworld.plateau"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A> in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A> that return <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>Joueurs.</B><B><A HREF="../../../../fr/blankoworld/plateau/Joueurs.html#donneJeton()">donneJeton</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Avez vous besoin du jeton du joueur ?</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A> with parameters of type <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> boolean</CODE></FONT></TD>
|
||||
<TD><CODE><B>Jeton.</B><B><A HREF="../../../../fr/blankoworld/plateau/Jeton.html#estMemeCouleur(fr.blankoworld.plateau.Jeton)">estMemeCouleur</A></B>(<A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A> jtn)</CODE>
|
||||
|
||||
<BR>
|
||||
Compare le jeton actuel et un autre jeton donne en parametre</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useJeton.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Jeton.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
183
G5a/Puissance4/doc/fr/blankoworld/plateau/class-use/Joueurs.html
Normal file
183
G5a/Puissance4/doc/fr/blankoworld/plateau/class-use/Joueurs.html
Normal file
@ -0,0 +1,183 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Class fr.blankoworld.plateau.Joueurs
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class fr.blankoworld.plateau.Joueurs";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useJoueurs.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Joueurs.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Class<br>fr.blankoworld.plateau.Joueurs</B></H2>
|
||||
</CENTER>
|
||||
<A NAME="fr.blankoworld.plateau"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A> that return <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>PlateauPuissance4.</B><B><A HREF="../../../../fr/blankoworld/plateau/PlateauPuissance4.html#alterneJoueur(fr.blankoworld.plateau.Joueurs, fr.blankoworld.plateau.Joueurs)">alterneJoueur</A></B>(<A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jUn,
|
||||
<A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jDeux)</CODE>
|
||||
|
||||
<BR>
|
||||
On recupere le joueur qui doit jouer</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A> with parameters of type <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>PlateauPuissance4.</B><B><A HREF="../../../../fr/blankoworld/plateau/PlateauPuissance4.html#alterneJoueur(fr.blankoworld.plateau.Joueurs, fr.blankoworld.plateau.Joueurs)">alterneJoueur</A></B>(<A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jUn,
|
||||
<A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> jDeux)</CODE>
|
||||
|
||||
<BR>
|
||||
On recupere le joueur qui doit jouer</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-useJoueurs.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Joueurs.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
@ -0,0 +1,142 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Class fr.blankoworld.plateau.PlateauPuissance4
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class fr.blankoworld.plateau.PlateauPuissance4";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-usePlateauPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlateauPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Class<br>fr.blankoworld.plateau.PlateauPuissance4</B></H2>
|
||||
</CENTER>
|
||||
No usage of fr.blankoworld.plateau.PlateauPuissance4
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?fr/blankoworld/plateau//class-usePlateauPuissance4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlateauPuissance4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
40
G5a/Puissance4/doc/fr/blankoworld/plateau/package-frame.html
Normal file
40
G5a/Puissance4/doc/fr/blankoworld/plateau/package-frame.html
Normal file
@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
fr.blankoworld.plateau
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../fr/blankoworld/plateau/package-summary.html" target="classFrame">fr.blankoworld.plateau</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="AideSaisie.html" title="class in fr.blankoworld.plateau" target="classFrame">AideSaisie</A>
|
||||
<BR>
|
||||
<A HREF="IhmPuissance4.html" title="class in fr.blankoworld.plateau" target="classFrame">IhmPuissance4</A>
|
||||
<BR>
|
||||
<A HREF="Jeton.html" title="class in fr.blankoworld.plateau" target="classFrame">Jeton</A>
|
||||
<BR>
|
||||
<A HREF="Joueurs.html" title="class in fr.blankoworld.plateau" target="classFrame">Joueurs</A>
|
||||
<BR>
|
||||
<A HREF="PlateauPuissance4.html" title="class in fr.blankoworld.plateau" target="classFrame">PlateauPuissance4</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
171
G5a/Puissance4/doc/fr/blankoworld/plateau/package-summary.html
Normal file
171
G5a/Puissance4/doc/fr/blankoworld/plateau/package-summary.html
Normal file
@ -0,0 +1,171 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
fr.blankoworld.plateau
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="fr.blankoworld.plateau";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV PACKAGE
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<H2>
|
||||
Package fr.blankoworld.plateau
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau">AideSaisie</A></B></TD>
|
||||
<TD>Aide a la recuperation des donnees saisies en console par l'utilisateur</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">IhmPuissance4</A></B></TD>
|
||||
<TD>Classe permettant d'interfacer le plateau de jeu du Puissance 4</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A></B></TD>
|
||||
<TD>Permet de creer des jetons pour le Blankuissance 4</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A></B></TD>
|
||||
<TD>Permet de creer des joueurs de Blankuissance 4 avec leur jeton</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A></B></TD>
|
||||
<TD>Classe plateau qui permet de creer un plateau de jeu</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV PACKAGE
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
162
G5a/Puissance4/doc/fr/blankoworld/plateau/package-tree.html
Normal file
162
G5a/Puissance4/doc/fr/blankoworld/plateau/package-tree.html
Normal file
@ -0,0 +1,162 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
fr.blankoworld.plateau Class Hierarchy
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="fr.blankoworld.plateau Class Hierarchy";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For Package fr.blankoworld.plateau
|
||||
</H2>
|
||||
</CENTER>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="../../../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau"><B>AideSaisie</B></A><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">java.awt.Window (implements javax.accessibility.Accessible)
|
||||
<UL>
|
||||
<LI TYPE="circle">java.awt.Frame (implements java.awt.MenuContainer)
|
||||
<UL>
|
||||
<LI TYPE="circle">javax.swing.JFrame (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||
<UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="../../../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>IhmPuissance4</B></A></UL>
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="../../../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><B>Jeton</B></A><LI TYPE="circle">fr.blankoworld.plateau.<A HREF="../../../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>Joueurs</B></A><LI TYPE="circle">fr.blankoworld.plateau.<A HREF="../../../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><B>PlateauPuissance4</B></A></UL>
|
||||
</UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
161
G5a/Puissance4/doc/fr/blankoworld/plateau/package-use.html
Normal file
161
G5a/Puissance4/doc/fr/blankoworld/plateau/package-use.html
Normal file
@ -0,0 +1,161 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Uses of Package fr.blankoworld.plateau
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package fr.blankoworld.plateau";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-use.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Uses of Package<br>fr.blankoworld.plateau</B></H2>
|
||||
</CENTER>
|
||||
<A NAME="fr.blankoworld.plateau"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A> used by <A HREF="../../../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../fr/blankoworld/plateau/class-use/Jeton.html#fr.blankoworld.plateau"><B>Jeton</B></A></B>
|
||||
|
||||
<BR>
|
||||
Permet de creer des jetons pour le Blankuissance 4</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../fr/blankoworld/plateau/class-use/Joueurs.html#fr.blankoworld.plateau"><B>Joueurs</B></A></B>
|
||||
|
||||
<BR>
|
||||
Permet de creer des joueurs de Blankuissance 4 avec leur jeton</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?fr/blankoworld/plateau/package-use.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
215
G5a/Puissance4/doc/help-doc.html
Normal file
215
G5a/Puissance4/doc/help-doc.html
Normal file
File diff suppressed because one or more lines are too long
152
G5a/Puissance4/doc/index-files/index-1.html
Normal file
152
G5a/Puissance4/doc/index-files/index-1.html
Normal file
@ -0,0 +1,152 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
A-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="A-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV LETTER
|
||||
<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-1.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_A_"><!-- --></A><H2>
|
||||
<B>A</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#afficherGrille()"><B>afficherGrille()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Affiche la grille de jeu
|
||||
<DT><A HREF="../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau"><B>AideSaisie</B></A> - Class in <A HREF="../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A><DD>Aide a la recuperation des donnees saisies en console par l'utilisateur<DT><A HREF="../fr/blankoworld/plateau/AideSaisie.html#AideSaisie()"><B>AideSaisie()</B></A> -
|
||||
Constructor for class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau">AideSaisie</A>
|
||||
<DD>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#ajoutPion(int, java.lang.String)"><B>ajoutPion(int, String)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Ajoute un pion dans la colonne choisie en donnant la couleur dudit pion
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#alterneJoueur(fr.blankoworld.plateau.Joueurs, fr.blankoworld.plateau.Joueurs)"><B>alterneJoueur(Joueurs, Joueurs)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>On recupere le joueur qui doit jouer
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV LETTER
|
||||
<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-1.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
146
G5a/Puissance4/doc/index-files/index-10.html
Normal file
146
G5a/Puissance4/doc/index-files/index-10.html
Normal file
@ -0,0 +1,146 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
N-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="N-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-9.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-10.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_N_"><!-- --></A><H2>
|
||||
<B>N</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#nbreColonnes"><B>nbreColonnes</B></A> -
|
||||
Variable in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#nbreLignes"><B>nbreLignes</B></A> -
|
||||
Variable in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-9.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-10.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-11.html
Normal file
143
G5a/Puissance4/doc/index-files/index-11.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
P-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="P-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-10.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-11.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_P_"><!-- --></A><H2>
|
||||
<B>P</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><B>PlateauPuissance4</B></A> - Class in <A HREF="../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A><DD>Classe plateau qui permet de creer un plateau de jeu<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#PlateauPuissance4()"><B>PlateauPuissance4()</B></A> -
|
||||
Constructor for class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-10.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-11.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-12.html
Normal file
143
G5a/Puissance4/doc/index-files/index-12.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
R-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="R-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-11.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-12.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_R_"><!-- --></A><H2>
|
||||
<B>R</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#reinitialiser()"><B>reinitialiser()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Permet de relancer le jeu (prevu pour l'ajout supplementaire d'un menu)
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-11.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-12.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
155
G5a/Puissance4/doc/index-files/index-13.html
Normal file
155
G5a/Puissance4/doc/index-files/index-13.html
Normal file
@ -0,0 +1,155 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
S-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="S-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-12.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-13.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_S_"><!-- --></A><H2>
|
||||
<B>S</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#s_nombreJoueurs"><B>s_nombreJoueurs</B></A> -
|
||||
Variable in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Nombre de joueurs instancies
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#setAlternanceJoueur()"><B>setAlternanceJoueur()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Affirme que nous changeons de joueurs (ce qui n'inclue pas le fait que nous ayons a le recuperer !)
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Jeton.html#setCouleur(java.lang.String)"><B>setCouleur(String)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A>
|
||||
<DD>Donne une couleur au jeton
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#setNom(java.lang.String)"><B>setNom(String)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Permet de changer/donner le nom du joueur
|
||||
<DT><A HREF="../fr/blankoworld/plateau/IhmPuissance4.html#surbrillanceCellule(java.awt.event.MouseEvent)"><B>surbrillanceCellule(MouseEvent)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">IhmPuissance4</A>
|
||||
<DD>Met le bouton choisi en surbrillance
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-12.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-13.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-14.html
Normal file
143
G5a/Puissance4/doc/index-files/index-14.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
T-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="T-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-13.html"><B>PREV LETTER</B></A>
|
||||
NEXT LETTER</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-14.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_T_"><!-- --></A><H2>
|
||||
<B>T</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#toString()"><B>toString()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Methode qui retourne le nom du joueur et la couleur du joueur en cours
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-13.html"><B>PREV LETTER</B></A>
|
||||
NEXT LETTER</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-14.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-2.html
Normal file
143
G5a/Puissance4/doc/index-files/index-2.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
D-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="D-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-1.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-2.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-2.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_D_"><!-- --></A><H2>
|
||||
<B>D</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#donneJeton()"><B>donneJeton()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Avez vous besoin du jeton du joueur ?
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-1.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-2.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-2.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
149
G5a/Puissance4/doc/index-files/index-3.html
Normal file
149
G5a/Puissance4/doc/index-files/index-3.html
Normal file
@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
E-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="E-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-2.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_E_"><!-- --></A><H2>
|
||||
<B>E</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/IhmPuissance4.html#enleveSurbrillance(java.awt.event.MouseEvent)"><B>enleveSurbrillance(MouseEvent)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">IhmPuissance4</A>
|
||||
<DD>Enleve la surbrillance
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#estAligne(int, int, int, int)"><B>estAligne(int, int, int, int)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Renvoie le nombre de pions de meme couleur alignes
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Jeton.html#estMemeCouleur(fr.blankoworld.plateau.Jeton)"><B>estMemeCouleur(Jeton)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A>
|
||||
<DD>Compare le jeton actuel et un autre jeton donne en parametre
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-2.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
140
G5a/Puissance4/doc/index-files/index-4.html
Normal file
140
G5a/Puissance4/doc/index-files/index-4.html
Normal file
@ -0,0 +1,140 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
F-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="F-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-3.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_F_"><!-- --></A><H2>
|
||||
<B>F</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/package-summary.html"><B>fr.blankoworld.plateau</B></A> - package fr.blankoworld.plateau<DD> </DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-3.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-4.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-4.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
158
G5a/Puissance4/doc/index-files/index-5.html
Normal file
158
G5a/Puissance4/doc/index-files/index-5.html
Normal file
@ -0,0 +1,158 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
G-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="G-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-4.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-6.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-5.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-5.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_G_"><!-- --></A><H2>
|
||||
<B>G</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#gagnant(int, int)"><B>gagnant(int, int)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Determine si le pion pose donne un jeu gagnant au joueur qui l'a pose ou pas
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Jeton.html#getCouleur()"><B>getCouleur()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A>
|
||||
<DD>Recupere la couleur du jeton
|
||||
<DT><A HREF="../fr/blankoworld/plateau/AideSaisie.html#getEntreeUtilisateur(java.lang.String)"><B>getEntreeUtilisateur(String)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau">AideSaisie</A>
|
||||
<DD>Recupere l'entree de console, c'est a dire les donnees saisies par l'utilisateur par la clavier, dans une console
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#getJoueurs()"><B>getJoueurs()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>On recupere une collection de joueurs sous forme de Vecteurs
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#getNom()"><B>getNom()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Recupere le nom du joueur
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#getPosition(int)"><B>getPosition(int)</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Permet de recuperer la position du pion dans une colonne donnee
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-4.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-6.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-5.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-5.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-6.html
Normal file
143
G5a/Puissance4/doc/index-files/index-6.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
I-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="I-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-5.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-6.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_I_"><!-- --></A><H2>
|
||||
<B>I</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>IhmPuissance4</B></A> - Class in <A HREF="../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A><DD>Classe permettant d'interfacer le plateau de jeu du Puissance 4<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#initialiser()"><B>initialiser()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Initialisation des variables, des joueurs, de la grille, etc ...
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-5.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-6.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
146
G5a/Puissance4/doc/index-files/index-7.html
Normal file
146
G5a/Puissance4/doc/index-files/index-7.html
Normal file
@ -0,0 +1,146 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
J-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="J-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-6.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-7.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_J_"><!-- --></A><H2>
|
||||
<B>J</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><B>Jeton</B></A> - Class in <A HREF="../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A><DD>Permet de creer des jetons pour le Blankuissance 4<DT><A HREF="../fr/blankoworld/plateau/Jeton.html#Jeton(java.lang.String)"><B>Jeton(String)</B></A> -
|
||||
Constructor for class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau">Jeton</A>
|
||||
<DD>Instanciation d'un nouveau jeton avec une couleur particuliere
|
||||
<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>Joueurs</B></A> - Class in <A HREF="../fr/blankoworld/plateau/package-summary.html">fr.blankoworld.plateau</A><DD>Permet de creer des joueurs de Blankuissance 4 avec leur jeton<DT><A HREF="../fr/blankoworld/plateau/Joueurs.html#Joueurs(java.lang.String, java.lang.String)"><B>Joueurs(String, String)</B></A> -
|
||||
Constructor for class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A>
|
||||
<DD>Constructeur de la classe Joueurs
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-6.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-7.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
143
G5a/Puissance4/doc/index-files/index-8.html
Normal file
143
G5a/Puissance4/doc/index-files/index-8.html
Normal file
@ -0,0 +1,143 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
L-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="L-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-7.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-9.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-8.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-8.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_L_"><!-- --></A><H2>
|
||||
<B>L</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#lancer()"><B>lancer()</B></A> -
|
||||
Method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>C'est ici que le jeu se deroule, que les appels sont faits, etc ...
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-7.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-9.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-8.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-8.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
146
G5a/Puissance4/doc/index-files/index-9.html
Normal file
146
G5a/Puissance4/doc/index-files/index-9.html
Normal file
@ -0,0 +1,146 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
M-Index
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="M-Index";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-8.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-10.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-9.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-9.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
<A NAME="_M_"><!-- --></A><H2>
|
||||
<B>M</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="../fr/blankoworld/plateau/IhmPuissance4.html#main(java.lang.String[])"><B>main(String[])</B></A> -
|
||||
Static method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">IhmPuissance4</A>
|
||||
<DD>Methode principale MAIN
|
||||
<DT><A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html#main(java.lang.String[])"><B>main(String[])</B></A> -
|
||||
Static method in class fr.blankoworld.plateau.<A HREF="../fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A>
|
||||
<DD>Methode principale MAIN
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index-8.html"><B>PREV LETTER</B></A>
|
||||
<A HREF="index-10.html"><B>NEXT LETTER</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../index.html?index-filesindex-9.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-9.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<A HREF="index-1.html">A</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">N</A> <A HREF="index-11.html">P</A> <A HREF="index-12.html">R</A> <A HREF="index-13.html">S</A> <A HREF="index-14.html">T</A> <HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
36
G5a/Puissance4/doc/index.html
Normal file
36
G5a/Puissance4/doc/index.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc on Tue Nov 06 21:46:51 CET 2007-->
|
||||
<TITLE>
|
||||
Generated Documentation (Untitled)
|
||||
</TITLE>
|
||||
<SCRIPT type="text/javascript">
|
||||
targetPage = "" + window.location.search;
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
targetPage = targetPage.substring(1);
|
||||
if (targetPage.indexOf(":") != -1)
|
||||
targetPage = "undefined";
|
||||
function loadFrames() {
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
top.classFrame.location = top.targetPage;
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
</HEAD>
|
||||
<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
|
||||
<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
|
||||
<FRAME src="fr/blankoworld/plateau/package-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
|
||||
<NOFRAMES>
|
||||
<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.
|
||||
<BR>
|
||||
Link to<A HREF="fr/blankoworld/plateau/package-summary.html">Non-frame version.</A>
|
||||
</NOFRAMES>
|
||||
</FRAMESET>
|
||||
</HTML>
|
164
G5a/Puissance4/doc/overview-tree.html
Normal file
164
G5a/Puissance4/doc/overview-tree.html
Normal file
@ -0,0 +1,164 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Class Hierarchy
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Class Hierarchy";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For All Packages</H2>
|
||||
</CENTER>
|
||||
<DL>
|
||||
<DT><B>Package Hierarchies:</B><DD><A HREF="fr/blankoworld/plateau/package-tree.html">fr.blankoworld.plateau</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="fr/blankoworld/plateau/AideSaisie.html" title="class in fr.blankoworld.plateau"><B>AideSaisie</B></A><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">java.awt.Window (implements javax.accessibility.Accessible)
|
||||
<UL>
|
||||
<LI TYPE="circle">java.awt.Frame (implements java.awt.MenuContainer)
|
||||
<UL>
|
||||
<LI TYPE="circle">javax.swing.JFrame (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||
<UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau"><B>IhmPuissance4</B></A></UL>
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<LI TYPE="circle">fr.blankoworld.plateau.<A HREF="fr/blankoworld/plateau/Jeton.html" title="class in fr.blankoworld.plateau"><B>Jeton</B></A><LI TYPE="circle">fr.blankoworld.plateau.<A HREF="fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau"><B>Joueurs</B></A><LI TYPE="circle">fr.blankoworld.plateau.<A HREF="fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau"><B>PlateauPuissance4</B></A></UL>
|
||||
</UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
1
G5a/Puissance4/doc/package-list
Normal file
1
G5a/Puissance4/doc/package-list
Normal file
@ -0,0 +1 @@
|
||||
fr.blankoworld.plateau
|
BIN
G5a/Puissance4/doc/resources/inherit.gif
Normal file
BIN
G5a/Puissance4/doc/resources/inherit.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 B |
279
G5a/Puissance4/doc/serialized-form.html
Normal file
279
G5a/Puissance4/doc/serialized-form.html
Normal file
@ -0,0 +1,279 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_03) on Tue Nov 06 21:46:51 CET 2007 -->
|
||||
<TITLE>
|
||||
Serialized Form
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2007-11-06">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Serialized Form";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H1>
|
||||
Serialized Form</H1>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="center"><FONT SIZE="+2">
|
||||
<B>Package</B> <B>fr.blankoworld.plateau</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="fr.blankoworld.plateau.IhmPuissance4"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class <A HREF="fr/blankoworld/plateau/IhmPuissance4.html" title="class in fr.blankoworld.plateau">fr.blankoworld.plateau.IhmPuissance4</A> extends javax.swing.JFrame implements Serializable</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<B>serialVersionUID: </B>1L
|
||||
|
||||
<P>
|
||||
<A NAME="serializedForm"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Serialized Fields</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<H3>
|
||||
p4</H3>
|
||||
<PRE>
|
||||
<A HREF="fr/blankoworld/plateau/PlateauPuissance4.html" title="class in fr.blankoworld.plateau">PlateauPuissance4</A> <B>p4</B></PRE>
|
||||
<DL>
|
||||
<DD>Un nouveau plateau de jeu ?
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
joueur</H3>
|
||||
<PRE>
|
||||
<A HREF="fr/blankoworld/plateau/Joueurs.html" title="class in fr.blankoworld.plateau">Joueurs</A> <B>joueur</B></PRE>
|
||||
<DL>
|
||||
<DD>Un joueur de base que nous utiliserons dans le programme
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
comptePion</H3>
|
||||
<PRE>
|
||||
int <B>comptePion</B></PRE>
|
||||
<DL>
|
||||
<DD>Nombre de pions dans le jeu
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
largeurFenetre</H3>
|
||||
<PRE>
|
||||
int <B>largeurFenetre</B></PRE>
|
||||
<DL>
|
||||
<DD>Largeur fenetre
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
LabelStatut</H3>
|
||||
<PRE>
|
||||
javax.swing.JLabel <B>LabelStatut</B></PRE>
|
||||
<DL>
|
||||
<DD>Le champ texte de la barre de statut
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
LabelInfos</H3>
|
||||
<PRE>
|
||||
javax.swing.JLabel <B>LabelInfos</B></PRE>
|
||||
<DL>
|
||||
<DD>Le second champ texte de la barre de statut
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
Panneau_Centre</H3>
|
||||
<PRE>
|
||||
javax.swing.JPanel <B>Panneau_Centre</B></PRE>
|
||||
<DL>
|
||||
<DD>Le paneau centre
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
degradeRouge</H3>
|
||||
<PRE>
|
||||
java.awt.GradientPaint <B>degradeRouge</B></PRE>
|
||||
<DL>
|
||||
<DD>Nos degrades de couleur
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
degradeJaune</H3>
|
||||
<PRE>
|
||||
java.awt.GradientPaint <B>degradeJaune</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
aucunGagnant</H3>
|
||||
<PRE>
|
||||
boolean <B>aucunGagnant</B></PRE>
|
||||
<DL>
|
||||
<DD>Y a t il un gagnant au depart ?
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="fr/blankoworld/plateau/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
29
G5a/Puissance4/doc/stylesheet.css
Normal file
29
G5a/Puissance4/doc/stylesheet.css
Normal file
@ -0,0 +1,29 @@
|
||||
/* Javadoc style sheet */
|
||||
|
||||
/* Define colors, fonts and other style attributes here to override the defaults */
|
||||
|
||||
/* Page background color */
|
||||
body { background-color: #FFFFFF; color:#000000 }
|
||||
|
||||
/* Headings */
|
||||
h1 { font-size: 145% }
|
||||
|
||||
/* Table colors */
|
||||
.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */
|
||||
.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */
|
||||
.TableRowColor { background: #FFFFFF; color:#000000 } /* White */
|
||||
|
||||
/* Font used in left-hand frame lists */
|
||||
.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
|
||||
/* Navigation bar fonts and colors */
|
||||
.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */
|
||||
.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */
|
||||
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
|
||||
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
|
||||
|
||||
.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
|
BIN
G5a/Puissance4/fr/blankoworld/plateau/AideSaisie.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/AideSaisie.class
Normal file
Binary file not shown.
35
G5a/Puissance4/fr/blankoworld/plateau/AideSaisie.java
Normal file
35
G5a/Puissance4/fr/blankoworld/plateau/AideSaisie.java
Normal file
@ -0,0 +1,35 @@
|
||||
package fr.blankoworld.plateau;
|
||||
|
||||
import java.io.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author olivier DOSSMANN
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Aide a la recuperation des donnees saisies en console par l'utilisateur
|
||||
*/
|
||||
public class AideSaisie {
|
||||
/**
|
||||
*
|
||||
* @param prompt
|
||||
* @return donnees saisies par l'utilisateur
|
||||
*/
|
||||
/**
|
||||
* Recupere l'entree de console, c'est a dire les donnees saisies par l'utilisateur par la clavier, dans une console
|
||||
*/
|
||||
public String getEntreeUtilisateur(String prompt) {
|
||||
String inputLine = null;
|
||||
System.out.print(prompt + " ");
|
||||
try {
|
||||
BufferedReader is = new BufferedReader(new InputStreamReader(System.in));
|
||||
inputLine = is.readLine();
|
||||
if (inputLine.length() == 0 ) return null;
|
||||
}
|
||||
catch (IOException e) {
|
||||
System.out.println("IOException: " + e);
|
||||
}
|
||||
return inputLine.toLowerCase();
|
||||
}
|
||||
}
|
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$1.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$1.class
Normal file
Binary file not shown.
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$2.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$2.class
Normal file
Binary file not shown.
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$3.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$3.class
Normal file
Binary file not shown.
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$4.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4$4.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4.class
Normal file
Binary file not shown.
480
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4.java
Normal file
480
G5a/Puissance4/fr/blankoworld/plateau/IhmPuissance4.java
Normal file
@ -0,0 +1,480 @@
|
||||
package fr.blankoworld.plateau;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.GradientPaint;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.GridLayout;
|
||||
import java.awt.RenderingHints;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseListener;
|
||||
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JLabel;
|
||||
import javax.swing.JMenu;
|
||||
import javax.swing.JMenuBar;
|
||||
import javax.swing.JMenuItem;
|
||||
import javax.swing.JOptionPane;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.border.BevelBorder;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author olivier
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Classe permettant d'interfacer le plateau de jeu du Puissance 4
|
||||
*/
|
||||
public class IhmPuissance4 extends JFrame {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** Un nouveau plateau de jeu ? */
|
||||
private PlateauPuissance4 p4 = new PlateauPuissance4();
|
||||
|
||||
/** Un joueur de base que nous utiliserons dans le programme */
|
||||
private Joueurs joueur;
|
||||
|
||||
/** Nombre de pions dans le jeu */
|
||||
private int comptePion = 0;
|
||||
|
||||
/** Largeur fenetre */
|
||||
int largeurFenetre = 800;
|
||||
|
||||
/** Le champ texte de la barre de statut */
|
||||
private JLabel LabelStatut = new JLabel("Veuillez selectionner une action dans le menu.");
|
||||
/** Le second champ texte de la barre de statut */
|
||||
private JLabel LabelInfos = new JLabel("Aucun Joueur");
|
||||
|
||||
/** Le paneau centre */
|
||||
JPanel Panneau_Centre;
|
||||
|
||||
/** Nos degrades de couleur */
|
||||
GradientPaint degradeRouge;
|
||||
GradientPaint degradeJaune;
|
||||
|
||||
/** Y a t il un gagnant au depart ? */
|
||||
private boolean aucunGagnant = true;
|
||||
|
||||
/**
|
||||
* @param args
|
||||
*/
|
||||
/**
|
||||
* Constructeur de l'IHM
|
||||
*/
|
||||
private IhmPuissance4(){
|
||||
|
||||
// Creation du menu Jeu
|
||||
JMenu MenuJeu = new JMenu("Jeu");
|
||||
JMenuItem MenuJeu_Nouveau = new JMenuItem("Nouveau");
|
||||
JMenuItem MenuJeu_Quitter = new JMenuItem("Quitter");
|
||||
MenuJeu.add(MenuJeu_Nouveau);
|
||||
MenuJeu.addSeparator();
|
||||
MenuJeu.add(MenuJeu_Quitter);
|
||||
|
||||
// Creation du menu Aide
|
||||
JMenu MenuAide = new JMenu("Aide");
|
||||
JMenuItem MenuAide_Apropos = new JMenuItem("A propos");
|
||||
MenuAide.add(MenuAide_Apropos);
|
||||
|
||||
// Creation de la barre de menus
|
||||
JMenuBar MenuPrincipal = new JMenuBar();
|
||||
MenuPrincipal.add(MenuJeu);
|
||||
MenuPrincipal.add(MenuAide);
|
||||
MenuPrincipal.setBorder(new BevelBorder(BevelBorder.RAISED));
|
||||
|
||||
// Panel au centre
|
||||
Panneau_Centre = new JPanel();
|
||||
Panneau_Centre.setBackground(Color.WHITE);
|
||||
Panneau_Centre.setBorder(new BevelBorder(BevelBorder.RAISED));
|
||||
|
||||
// Creation de la barre de status
|
||||
JPanel PanneauStatut = new JPanel();
|
||||
PanneauStatut.setLayout(new BorderLayout());
|
||||
PanneauStatut.add(LabelStatut, BorderLayout.WEST);
|
||||
PanneauStatut.add(LabelInfos, BorderLayout.EAST);
|
||||
PanneauStatut.setBorder(new BevelBorder(BevelBorder.RAISED));
|
||||
|
||||
// Construction de la maquette
|
||||
this.getContentPane().setLayout(new BorderLayout());
|
||||
this.add(PanneauStatut, BorderLayout.SOUTH);
|
||||
this.add(Panneau_Centre, BorderLayout.CENTER);
|
||||
this.add(MenuPrincipal, BorderLayout.NORTH);
|
||||
|
||||
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
|
||||
this.setSize(largeurFenetre,(int) ((largeurFenetre * 3) / 4));
|
||||
this.setLocation(200,200);
|
||||
this.setResizable(false);
|
||||
this.setTitle("Blankuissance 4");
|
||||
|
||||
// ***************************************************** //
|
||||
|
||||
// menu Jeu - bouton Nouveau
|
||||
MenuJeu_Nouveau.addActionListener(new ActionListener(){
|
||||
public void actionPerformed(ActionEvent ev){
|
||||
menuJeuNouveau();
|
||||
}
|
||||
});
|
||||
|
||||
// menu Jeu - bouton Quitter
|
||||
MenuJeu_Quitter.addActionListener(new ActionListener(){
|
||||
public void actionPerformed(ActionEvent ev){
|
||||
menuJeuQuitter();
|
||||
}
|
||||
});
|
||||
|
||||
// menu Apropos - bouton
|
||||
MenuAide_Apropos.addActionListener(new ActionListener(){
|
||||
public void actionPerformed(ActionEvent ev){
|
||||
menuApropos();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @author olivier
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* On etend la classe JButton a une classe BoutonBlanko pour dessiner des boutons differents
|
||||
*/
|
||||
class BoutonBlanko extends JButton {
|
||||
|
||||
public static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Degrade noir
|
||||
*/
|
||||
private GradientPaint degrade = new GradientPaint(100,100,Color.WHITE,170, 0,Color.BLACK);
|
||||
/**
|
||||
* Et la couleur B qui va avec (blanche)
|
||||
*/
|
||||
private String couleur = new String("B");
|
||||
|
||||
/**
|
||||
* Redefinition de la methode paintComponent pour dessiner le bouton
|
||||
*/
|
||||
public void paintComponent(Graphics g) {
|
||||
|
||||
super.paintComponent(g);
|
||||
Graphics2D g2 = (Graphics2D) g;
|
||||
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
|
||||
// Calcuel dynamiquement les informations de taille (pris de JavaDoc)
|
||||
Dimension size = getSize();
|
||||
// diametre
|
||||
int d;
|
||||
int x;
|
||||
int y;
|
||||
|
||||
// On enleve les bordures des boutons
|
||||
this.setBorderPainted(false);
|
||||
// puis le fait que lorsque nous cliquons sur le bouton il y ait un carre gris de selection
|
||||
this.setEnabled(false);
|
||||
|
||||
// Calcul des donnees du cercle fonce
|
||||
d = (int) ( Math.min(size.width, size.height) * .80 * 1.10);
|
||||
x = (size.width - d)/2;
|
||||
y = (size.height - d)/2;
|
||||
|
||||
g2.setColor(new Color(17,53,188));
|
||||
g2.fillOval(x ,y ,d ,d);
|
||||
|
||||
// Calcul des donnees du cercle intermediaire
|
||||
d = (int) ( Math.min(size.width, size.height) * .80 * 1.05);
|
||||
x = (size.width - d)/2;
|
||||
y = (size.height - d)/2;
|
||||
|
||||
g2.setColor(Color.BLACK);
|
||||
g2.fillOval(x ,y ,d ,d);
|
||||
|
||||
// Calcul des donnees du cercle interieur blanc
|
||||
d = (int) ( Math.min(size.width, size.height) * .80 );
|
||||
x = (size.width - d)/2;
|
||||
y = (size.height - d)/2;
|
||||
// dessine le cercle blanc
|
||||
g2.setPaint(degrade);
|
||||
g2.fillOval(x, y, d, d);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param couleurChoisie - Couleur que nous voulons (normalement une lettre)
|
||||
* @param gp - Degrade de peinture
|
||||
* @return La couleur a ete correctement mise ou pas ?
|
||||
*/
|
||||
/**
|
||||
* On ajoute une couleur au bouton et on verifie si elle a bien ete appliquee
|
||||
*/
|
||||
public boolean setCouleur(String couleurChoisie, GradientPaint gp){
|
||||
if(!couleur.equals("R") && !couleur.equals("J")){
|
||||
if(couleur.equals("R")){
|
||||
this.couleur = "R";
|
||||
}
|
||||
else {
|
||||
this.couleur = "J";
|
||||
}
|
||||
degrade = gp;
|
||||
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
couleur.equals("B");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Action du bouton Quitter du menu Jeu</p>
|
||||
*
|
||||
*/
|
||||
private void menuJeuQuitter(){
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Action du bouton Nouveau du menu Jeu</p>
|
||||
* @param args
|
||||
*/
|
||||
private void menuJeuNouveau(){
|
||||
|
||||
// On initialise le plateau de jeu
|
||||
p4.initialiser();
|
||||
|
||||
// Creation d'un joueur generique
|
||||
joueur = new Joueurs("joueur de base", " ");
|
||||
|
||||
// On alterne de joueur, on recupere donc le joueur en cours
|
||||
joueur = p4.alterneJoueur((Joueurs)p4.getJoueurs().get(1), (Joueurs)p4.getJoueurs().get(2));
|
||||
|
||||
// On remet le nombre de pions à 0
|
||||
comptePion = 0;
|
||||
|
||||
aucunGagnant = true;
|
||||
|
||||
this.remove(Panneau_Centre);
|
||||
Panneau_Centre = new JPanel();
|
||||
Panneau_Centre.setLayout(new GridLayout(p4.nbreLignes,p4.nbreColonnes));
|
||||
for(int i = 0; i < p4.nbreLignes; i++){
|
||||
for(int j = 0; j < p4.nbreColonnes; j++){
|
||||
BoutonBlanko moi = new BoutonBlanko();
|
||||
moi.setBackground(Color.GRAY);
|
||||
|
||||
// menu Fichier - bouton Quitter
|
||||
moi.addMouseListener(new MouseListener() {
|
||||
public void mouseClicked(MouseEvent ev) {
|
||||
actionGrille(ev);
|
||||
}
|
||||
public void mouseExited(MouseEvent ev) {
|
||||
enleveSurbrillance(ev);
|
||||
}
|
||||
public void mouseReleased(MouseEvent ev){
|
||||
|
||||
}
|
||||
public void mousePressed(MouseEvent ev){
|
||||
|
||||
}
|
||||
public void mouseEntered(MouseEvent ev){
|
||||
surbrillanceCellule(ev);
|
||||
}
|
||||
});
|
||||
|
||||
Panneau_Centre.add(moi);
|
||||
}
|
||||
}
|
||||
Panneau_Centre.setBorder(new BevelBorder(BevelBorder.RAISED));
|
||||
this.add(Panneau_Centre, BorderLayout.CENTER);
|
||||
|
||||
LabelStatut.setText("Selectionnez une colonne puis cliquez dessus.");
|
||||
|
||||
this.validate();
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Action du bouton Apropos du menu Aide</p>
|
||||
* @param args
|
||||
*/
|
||||
private void menuApropos(){
|
||||
JOptionPane.showMessageDialog(null, "Blankuissance4\n\n" +
|
||||
"Version 0.5\n" +
|
||||
"Developpe par Blankoworld\n\n",
|
||||
"A propos de Blankuissance4",
|
||||
JOptionPane.QUESTION_MESSAGE);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Action sur la grille du plateau de jeu</p>
|
||||
* @param ev
|
||||
*/
|
||||
private void actionGrille(MouseEvent ev){
|
||||
|
||||
boolean resultat;
|
||||
String couleur;
|
||||
|
||||
// Degrades de couleurs rouges et jaunes
|
||||
degradeRouge = new GradientPaint(100,100,Color.RED,(int) (this.getHeight() * 0.15), 0,Color.WHITE);
|
||||
degradeJaune = new GradientPaint(100,100,Color.YELLOW,(int) (this.getHeight() * 0.15), 0,Color.WHITE);
|
||||
|
||||
// Un nouveau bouton pour travailler dessus
|
||||
BoutonBlanko bb = new BoutonBlanko();
|
||||
BoutonBlanko bbModif = new BoutonBlanko();
|
||||
|
||||
// On recupere le bouton sur lequel nous travaillons
|
||||
bb = (BoutonBlanko) ev.getSource();
|
||||
|
||||
// Definition de la colonne dans laquelle nous nous trouvons
|
||||
int colonne = (int) (bb.getX() / bb.getWidth()) + 1;
|
||||
// Definition de la ligne ou nous nous trouvons
|
||||
// int ligne = (int) (bb.getY() / bb.getHeight()) + 1;
|
||||
// Definition et calcul du numero du pion sur lequel nous venons de cliquez dans le tableau GRAPHIQUE
|
||||
// int numeroPosAct = ((ligne - 1) * p4.nbreColonnes) + (colonne - 1);
|
||||
|
||||
// On defini la position reelle pour placer notre pion
|
||||
int PositionColonne = p4.getPosition(colonne - 1);
|
||||
|
||||
if(aucunGagnant && PositionColonne < p4.nbreLignes && comptePion < p4.nbreColonnes * p4.nbreLignes) {
|
||||
|
||||
int numeroPlacement = (((p4.nbreLignes - 1 - PositionColonne) * p4.nbreColonnes) + (colonne - 1));
|
||||
|
||||
// LabelStatut.setText("Colonne: " + colonne + " Ligne: " + ligne + " Numero: " +
|
||||
// numeroPosAct + " Position de la colonne: " + PositionColonne + " Numero à placer: " + numeroPlacement);
|
||||
LabelStatut.setText("Le " + joueur.getNom() + " a jete son pion dans la colonne " + colonne);
|
||||
|
||||
// On veut donner le prochain joueur, le programme etant mal fichu, il faut alterner puis revenir en arriere
|
||||
p4.setAlternanceJoueur();
|
||||
joueur = p4.alterneJoueur((Joueurs)p4.getJoueurs().get(1), (Joueurs)p4.getJoueurs().get(2));
|
||||
LabelInfos.setText(joueur.getNom() + ", c'est a vous !");
|
||||
p4.setAlternanceJoueur();
|
||||
joueur = p4.alterneJoueur((Joueurs)p4.getJoueurs().get(1), (Joueurs)p4.getJoueurs().get(2));
|
||||
|
||||
bbModif = (BoutonBlanko) Panneau_Centre.getComponent(numeroPlacement);
|
||||
|
||||
if(joueur.donneJeton().getCouleur().equals("R")){
|
||||
couleur = "R";
|
||||
resultat = bbModif.setCouleur(couleur, degradeRouge);
|
||||
}
|
||||
else{
|
||||
couleur = "J";
|
||||
resultat = bbModif.setCouleur(couleur, degradeJaune);
|
||||
}
|
||||
|
||||
if(p4.getPosition(colonne - 1) < p4.nbreLignes){
|
||||
// On ajoute le pion au tableau du plateau
|
||||
p4.ajoutPion(colonne - 1, couleur);
|
||||
|
||||
// // Affichage en console de la grille pour verification
|
||||
// p4.afficherGrille();
|
||||
}
|
||||
|
||||
bbModif.repaint();
|
||||
if(resultat){
|
||||
// On ajoute un pion au nombre de pions utilises
|
||||
comptePion++;
|
||||
|
||||
// On confirme que le joueur a joue et qu'on change de joueur
|
||||
p4.setAlternanceJoueur();
|
||||
joueur = p4.alterneJoueur((Joueurs)p4.getJoueurs().get(1), (Joueurs)p4.getJoueurs().get(2));
|
||||
}
|
||||
|
||||
// Mise a niveau de la colonne vis a vis de la structure Java (commence à 0)
|
||||
colonne --;
|
||||
|
||||
if(comptePion > 5 && p4.gagnant(colonne, p4.getPosition(colonne) - 1)){
|
||||
comptePion = 41;
|
||||
// On alterne de joueur (oui programme mal fichu !)
|
||||
p4.setAlternanceJoueur();
|
||||
joueur = p4.alterneJoueur((Joueurs)p4.getJoueurs().get(1), (Joueurs)p4.getJoueurs().get(2));
|
||||
JOptionPane.showMessageDialog(null, "Le " + joueur.getNom() + " gagne !", "Message", JOptionPane.INFORMATION_MESSAGE);
|
||||
aucunGagnant = false;
|
||||
LabelInfos.setText("Aucun joueur");
|
||||
LabelStatut.setText("Merci aux participants !");
|
||||
}
|
||||
}
|
||||
else if(comptePion >= 41){
|
||||
LabelStatut.setText("Jeu fini !");
|
||||
}
|
||||
else {
|
||||
LabelStatut.setText("Vous ne pouvez plus jouer dans cette colonne. Choisissez une autre colonne.");
|
||||
}
|
||||
|
||||
// Repeinte du champ de texte nomme Statut
|
||||
LabelStatut.repaint();
|
||||
// Idem avec Infos
|
||||
LabelInfos.repaint();
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Met le bouton choisi en surbrillance</p>
|
||||
* @param ev - Evenement lie au clic de souris
|
||||
*/
|
||||
public void surbrillanceCellule(MouseEvent ev){
|
||||
// Un nouveau bouton pour travailler dessus
|
||||
BoutonBlanko bb = new BoutonBlanko();
|
||||
BoutonBlanko bbModif = new BoutonBlanko();
|
||||
|
||||
// On recupere le bouton sur lequel nous travaillons
|
||||
bb = (BoutonBlanko) ev.getSource();
|
||||
|
||||
// Definition de la colonne dans laquelle nous nous trouvons
|
||||
int colonne = (int) (bb.getX() / bb.getWidth()) + 1;
|
||||
|
||||
for(int i = 0; i < p4.nbreLignes; i++){
|
||||
|
||||
int numeroPlacement = (((p4.nbreLignes - 1 - i) * p4.nbreColonnes) + (colonne - 1));
|
||||
bbModif = (BoutonBlanko) Panneau_Centre.getComponent(numeroPlacement);
|
||||
bbModif.setBackground(new Color(213,213,213,125));
|
||||
bbModif.repaint();
|
||||
}
|
||||
|
||||
LabelInfos.setText(joueur.getNom() + " est sur colonne " + colonne + ".");
|
||||
|
||||
LabelStatut.repaint();
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Enleve la surbrillance</p>
|
||||
* @param ev - Evenement lie au clic de souris
|
||||
*/
|
||||
public void enleveSurbrillance(MouseEvent ev){
|
||||
// Un nouveau bouton pour travailler dessus
|
||||
BoutonBlanko bb = new BoutonBlanko();
|
||||
BoutonBlanko bbModif = new BoutonBlanko();
|
||||
|
||||
// On recupere le bouton sur lequel nous travaillons
|
||||
bb = (BoutonBlanko) ev.getSource();
|
||||
|
||||
// Definition de la colonne dans laquelle nous nous trouvons
|
||||
int colonne = (int) (bb.getX() / bb.getWidth()) + 1;
|
||||
|
||||
for(int i = 0; i < p4.nbreLignes; i++){
|
||||
|
||||
int numeroPlacement = (((p4.nbreLignes - 1 - i) * p4.nbreColonnes) + (colonne - 1));
|
||||
bbModif = (BoutonBlanko) Panneau_Centre.getComponent(numeroPlacement);
|
||||
bbModif.setBackground(Color.GRAY);
|
||||
bbModif.repaint();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Methode principale MAIN
|
||||
* @param args
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
// TODO Auto-generated method stub
|
||||
new IhmPuissance4().setVisible(true);
|
||||
|
||||
}
|
||||
|
||||
}
|
BIN
G5a/Puissance4/fr/blankoworld/plateau/Jeton.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/Jeton.class
Normal file
Binary file not shown.
58
G5a/Puissance4/fr/blankoworld/plateau/Jeton.java
Normal file
58
G5a/Puissance4/fr/blankoworld/plateau/Jeton.java
Normal file
@ -0,0 +1,58 @@
|
||||
package fr.blankoworld.plateau;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author olivier DOSSMANN
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Permet de creer des jetons pour le Blankuissance 4
|
||||
*/
|
||||
public class Jeton {
|
||||
/**
|
||||
* Couleur du jeton
|
||||
*/
|
||||
private String couleur;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param colorimetrie - Couleur du jeton
|
||||
*/
|
||||
/**
|
||||
* Instanciation d'un nouveau jeton avec une couleur particuliere
|
||||
*/
|
||||
public Jeton(String colorimetrie){
|
||||
couleur = colorimetrie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupere la couleur du jeton
|
||||
* @return couleur du jeton
|
||||
*/
|
||||
public String getCouleur(){
|
||||
return couleur;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param clr - couleur souhaite du jeton
|
||||
*/
|
||||
/**
|
||||
* Donne une couleur au jeton
|
||||
*/
|
||||
public void setCouleur(String clr){
|
||||
this.couleur = clr;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param jtn - Jeton a compare avec celui en cours
|
||||
* @return Different ou non au jeton compare ?
|
||||
*/
|
||||
/**
|
||||
* Compare le jeton actuel et un autre jeton donne en parametre
|
||||
*/
|
||||
public boolean estMemeCouleur(Jeton jtn){
|
||||
return (jtn.getCouleur().equals(this.couleur));
|
||||
}
|
||||
}
|
BIN
G5a/Puissance4/fr/blankoworld/plateau/Joueurs.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/Joueurs.class
Normal file
Binary file not shown.
80
G5a/Puissance4/fr/blankoworld/plateau/Joueurs.java
Normal file
80
G5a/Puissance4/fr/blankoworld/plateau/Joueurs.java
Normal file
@ -0,0 +1,80 @@
|
||||
package fr.blankoworld.plateau;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author olivier DOSSMANN
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Permet de creer des joueurs de Blankuissance 4 avec leur jeton
|
||||
*/
|
||||
public class Joueurs {
|
||||
|
||||
/**
|
||||
* Nom du joueur
|
||||
*/
|
||||
private String nomJoueur;
|
||||
/**
|
||||
* Jeton du joueur
|
||||
*/
|
||||
private Jeton jetonJoueur;
|
||||
|
||||
/**
|
||||
* Nombre de joueurs instancies
|
||||
*/
|
||||
public int s_nombreJoueurs;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param nom - Nom du joueur
|
||||
* @param couleur - couleur de son pion
|
||||
*/
|
||||
/**
|
||||
* Constructeur de la classe Joueurs
|
||||
*/
|
||||
public Joueurs(String nom, String couleur){
|
||||
nomJoueur = nom;
|
||||
jetonJoueur = new Jeton(couleur);
|
||||
s_nombreJoueurs++;
|
||||
}
|
||||
|
||||
/**
|
||||
* Methode qui retourne le nom du joueur et la couleur du joueur en cours
|
||||
*/
|
||||
public String toString(){
|
||||
return "Joueur : " + nomJoueur + "\nCouleur : " + this.jetonJoueur.getCouleur();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return Nom du joueur
|
||||
*/
|
||||
/**
|
||||
* Recupere le nom du joueur
|
||||
*/
|
||||
public String getNom(){
|
||||
return this.nomJoueur;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param nom - Nom du joueur
|
||||
*/
|
||||
/**
|
||||
* Permet de changer/donner le nom du joueur
|
||||
*/
|
||||
public void setNom(String nom){
|
||||
this.nomJoueur = nom;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return recupere le jeton du joueur
|
||||
*/
|
||||
/**
|
||||
* Avez vous besoin du jeton du joueur ? Oui ? Alors vous etes au bon endroit
|
||||
*/
|
||||
public Jeton donneJeton(){
|
||||
return this.jetonJoueur;
|
||||
}
|
||||
}
|
BIN
G5a/Puissance4/fr/blankoworld/plateau/PlateauPuissance4.class
Normal file
BIN
G5a/Puissance4/fr/blankoworld/plateau/PlateauPuissance4.class
Normal file
Binary file not shown.
396
G5a/Puissance4/fr/blankoworld/plateau/PlateauPuissance4.java
Normal file
396
G5a/Puissance4/fr/blankoworld/plateau/PlateauPuissance4.java
Normal file
@ -0,0 +1,396 @@
|
||||
package fr.blankoworld.plateau;
|
||||
|
||||
import java.util.Vector;
|
||||
|
||||
/**
|
||||
* @author Olivier DOSSMANN
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Classe plateau qui permet de creer un plateau de jeu
|
||||
*/
|
||||
public class PlateauPuissance4 {
|
||||
|
||||
private Jeton[][] grille;
|
||||
private int[] positions;
|
||||
private boolean alternanceJoueur = true;
|
||||
private Joueurs j1;
|
||||
private Joueurs j2;
|
||||
private Joueurs j0;
|
||||
private Vector CollectionJoueurs;
|
||||
|
||||
public int nbreColonnes = 7;
|
||||
public int nbreLignes = 6;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param args - Arguments passes en parametre
|
||||
*/
|
||||
/**
|
||||
* Methode principale MAIN
|
||||
*/
|
||||
public static void main(String args[]){
|
||||
// System.out.println("Bienvenue dans Blankuissance4, le nouveau jeu fecal de puissance 4 !");
|
||||
|
||||
// Instanciation de l'objet a partir de la classe PlateauPuissance4
|
||||
PlateauPuissance4 p4 = new PlateauPuissance4();
|
||||
|
||||
p4.lancer();
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialisation des variables, des joueurs, de la grille, etc ...
|
||||
*
|
||||
*/
|
||||
public void initialiser()
|
||||
{
|
||||
// Initialisation des joueurs
|
||||
j1 = new Joueurs("Joueur Un", "R");
|
||||
j2 = new Joueurs("Joueur Deux", "J");
|
||||
j0 = new Joueurs("Joueur inexistant", " ");
|
||||
|
||||
// On remplit la collection de joueurs
|
||||
CollectionJoueurs = new Vector();
|
||||
CollectionJoueurs.add(j0);
|
||||
CollectionJoueurs.add(j1);
|
||||
CollectionJoueurs.add(j2);
|
||||
|
||||
// Creation de la grille
|
||||
grille = new Jeton[nbreColonnes][nbreLignes];
|
||||
|
||||
// Creation tu tableau de positionnement
|
||||
positions = new int[7];
|
||||
|
||||
// Initialisation du tableau
|
||||
for (int i = 0; i < nbreColonnes; i++){
|
||||
for(int j = 0; j < nbreLignes; j++){
|
||||
grille[i][j] = j0.donneJeton();
|
||||
}
|
||||
}
|
||||
|
||||
// Initialisation des positions
|
||||
for (int i = 0; i < nbreColonnes; i++){
|
||||
positions[i] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Permet de relancer le jeu (prevu pour l'ajout supplementaire d'un menu)
|
||||
*
|
||||
*/
|
||||
public void reinitialiser(){
|
||||
lancer();
|
||||
}
|
||||
|
||||
/**
|
||||
* Affiche la grille de jeu
|
||||
*
|
||||
*/
|
||||
public void afficherGrille(){
|
||||
for (int i = nbreLignes - 1; i >= 0; i--){
|
||||
for(int j = 0; j < nbreColonnes; j++){
|
||||
System.out.print(grille[j][i].getCouleur() + "|");
|
||||
}
|
||||
System.out.print("\n");
|
||||
}
|
||||
for (int k = 0; k < nbreColonnes; k++){
|
||||
System.out.print("--");
|
||||
}
|
||||
System.out.print("\n");
|
||||
|
||||
for (int l = 0; l < nbreColonnes; l++){
|
||||
System.out.print(Integer.toString(l + 1) + "|");
|
||||
}
|
||||
System.out.print("\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* C'est ici que le jeu se deroule, que les appels sont faits, etc ...
|
||||
* Tout est la !
|
||||
*
|
||||
*/
|
||||
public void lancer(){
|
||||
System.out.println("Lancement du jeu de plateau");
|
||||
|
||||
// Initialisation du plateau
|
||||
this.initialiser();
|
||||
|
||||
// Affichage du plateau pour verification
|
||||
this.afficherGrille();
|
||||
|
||||
// Creation d'une aide pour les entrees de l'utilisateur
|
||||
AideSaisie aide = new AideSaisie();
|
||||
|
||||
// Affichage des joueurs
|
||||
System.out.println("Affichage des deux joueurs : ");
|
||||
System.out.println(" - " + j1.toString() + ".");
|
||||
System.out.println(" - " + j2.toString() + ".");
|
||||
|
||||
// Creation d'un joueur generique
|
||||
Joueurs joueur = new Joueurs("joueur de base", " ");
|
||||
|
||||
// Numero de colonne choisi
|
||||
int colonne = 0;
|
||||
|
||||
// incrementeur de jetons
|
||||
int i = 0;
|
||||
|
||||
// Contrele d'entree de boucle
|
||||
boolean aGagne = false;
|
||||
|
||||
while (aGagne == false && i < (nbreColonnes * nbreLignes))
|
||||
{
|
||||
|
||||
// Methode pour alterner de joueur : entre le joueur Un et le joueur Deux
|
||||
joueur = alterneJoueur(j1,j2);
|
||||
|
||||
boolean ok = true;
|
||||
// Recuperation de la proposition de colonne de l'utilisateur
|
||||
while(ok){
|
||||
String proposition = aide.getEntreeUtilisateur("Colonne (entre 1 et " + nbreColonnes + ") : ");
|
||||
System.out.println("Colonne choisie par " + joueur.getNom() + " : " + proposition);
|
||||
|
||||
// Traduction en entier du numero de colonne
|
||||
if (proposition == null){
|
||||
colonne = nbreColonnes;
|
||||
}
|
||||
else{
|
||||
colonne = Integer.parseInt(proposition);
|
||||
|
||||
// Mise a niveau de la colonne vis a vis de la structure Java
|
||||
colonne --;
|
||||
}
|
||||
|
||||
// Verification que la colonne n'est pas pleine ou hors limite
|
||||
if (colonne > nbreColonnes - 1 || colonne < 0){
|
||||
ok = true;
|
||||
System.out.println("Hors limites !");
|
||||
}
|
||||
else if (!grille[colonne][5].getCouleur().equals(" ")){
|
||||
ok = true;
|
||||
System.out.println("Colonne a ras bord !");
|
||||
}
|
||||
else{
|
||||
ok = false;
|
||||
System.out.println("Longueur du tableau : " + grille[colonne].length);
|
||||
|
||||
// Si colonne pas pleine, verifier a quel position les pions precedents sont poses
|
||||
// Si aucun pion, alors poser tout en bas
|
||||
|
||||
this.ajoutPion(colonne, joueur.donneJeton().getCouleur());
|
||||
this.afficherGrille();
|
||||
}
|
||||
}
|
||||
|
||||
// Il faut minimum 7 pions poses, avant de savoir si le joueur a gagne ou pas
|
||||
// Comme nous commencons a 0 l'incr<63>menteur (7 - 1 = 6), et que le jeton actuel
|
||||
// n'est pas encore compte (6 - 1 = 5),
|
||||
// alors on met la valeur a 5. C'est a dire que nous aurons deja i a 7 au minimum quand on fera
|
||||
// ce test, et que nous serons dans le cas du 8i<38>me jeton.
|
||||
if (i > 5){
|
||||
|
||||
// Verification si le joueur gagne
|
||||
// On decremente de 1 positions[colonne] car nous y avons ajoute 1 pour le pion suivant
|
||||
aGagne = gagnant(colonne, positions[colonne] - 1);
|
||||
}
|
||||
|
||||
// Instanciation de i pour confirmer que le coup est lance
|
||||
i++;
|
||||
// Idem mais alternance du joueur
|
||||
alternanceJoueur = !alternanceJoueur;
|
||||
System.out.println("Coup numero " + i + " joue !");
|
||||
System.out.print("\n");
|
||||
}
|
||||
|
||||
if (i < (nbreColonnes * nbreLignes)){
|
||||
System.out.println(joueur.getNom() + " a gagne !");
|
||||
System.out.println("Merci au joueur de l'autre equipe d'avoir participe.");
|
||||
}
|
||||
else{
|
||||
System.out.println("Jeu termine, aucun gagnant !");
|
||||
System.out.println("Merci d'avoir joue.");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param jUn - Joueur Un
|
||||
* @param jDeux - Joueur Deux
|
||||
* @return Joueur qui dois jouer
|
||||
*/
|
||||
/**
|
||||
* On recupere le joueur qui doit jouer
|
||||
*/
|
||||
public Joueurs alterneJoueur(Joueurs jUn, Joueurs jDeux){
|
||||
|
||||
if (alternanceJoueur){
|
||||
return jUn;
|
||||
}
|
||||
else{
|
||||
return jDeux;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param positionColonne - Position de la colonne choisie
|
||||
* @param couleur - Couleur du pion pose
|
||||
*/
|
||||
/**
|
||||
* Ajoute un pion dans la colonne choisie en donnant la couleur dudit pion
|
||||
*/
|
||||
public void ajoutPion(int positionColonne, String couleur){
|
||||
Jeton nouveauPion = new Jeton(couleur);
|
||||
int positionJeton = positions[positionColonne];
|
||||
|
||||
grille[positionColonne][positionJeton] = nouveauPion;
|
||||
positions[positionColonne] ++;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param colonneChoisie - Colonne que l'utilisateur a choisi
|
||||
* @param positionPion - Position du pion dans ladite colonne
|
||||
* @return Avons nous un gagnant ? Oui ou non ?
|
||||
*/
|
||||
/**
|
||||
* Determine si le pion pose donne un jeu gagnant au joueur qui l'a pose ou pas
|
||||
*/
|
||||
public boolean gagnant(int colonneChoisie, int positionPion){
|
||||
|
||||
// Entier qui permet de definir le nombre de puissance 4 effectues
|
||||
int puissance4 = 1;
|
||||
|
||||
puissance4 = estAligne(2,0,colonneChoisie,positionPion) + estAligne(1,0,colonneChoisie,positionPion) + 1;
|
||||
if( puissance4 < 4){
|
||||
//System.out.println(puissance4);
|
||||
puissance4 = estAligne(0,2,colonneChoisie,positionPion) + estAligne(0,1,colonneChoisie,positionPion) + 1;
|
||||
if(puissance4 < 4){
|
||||
//System.out.println(puissance4);
|
||||
puissance4 = estAligne(2,2,colonneChoisie,positionPion) + estAligne(1,1,colonneChoisie,positionPion) + 1;
|
||||
if(puissance4 < 4){
|
||||
//System.out.println(puissance4);
|
||||
puissance4 = estAligne(1,2,colonneChoisie,positionPion) + estAligne(2,1,colonneChoisie,positionPion) + 1;
|
||||
if(puissance4 < 4){
|
||||
//System.out.println(puissance4);
|
||||
return false;
|
||||
}
|
||||
else return true;
|
||||
}
|
||||
else return true;
|
||||
}
|
||||
else return true;
|
||||
}
|
||||
else return true;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param X - Valeur 0,1 ou 2. Avec 1 nous incrementons, avec 2 l'inverse, et avec 0 nous ne faisons rien
|
||||
* @param Y - Idem que X
|
||||
* @param colonneChoisie - Colonne de laquelle nous partons
|
||||
* @param positionPion - position du pion de lequel nous partons
|
||||
* @return Avons nous une ligne de puissance 4 ? Combien de pions alors ?
|
||||
*/
|
||||
/**
|
||||
* Renvoie le nombre de pions de meme couleur alignes
|
||||
*/
|
||||
public int estAligne(int X, int Y, int colonneChoisie, int positionPion){
|
||||
int puissance4 = 0;
|
||||
boolean ok = true;
|
||||
int colonneTestee = colonneChoisie, ligneTestee = positionPion;
|
||||
|
||||
// Verification à l'écran que nous nous trouvons au bon endroit
|
||||
//System.out.println("X: " + X + " Y: " + Y + " Colonne choisie: " + colonneChoisie + " Position choisie: " + positionPion);
|
||||
|
||||
if(Y == 1){
|
||||
colonneTestee++;
|
||||
}
|
||||
else if(Y == 2){
|
||||
colonneTestee--;
|
||||
}
|
||||
else{
|
||||
// Rien
|
||||
}
|
||||
if(X == 1){
|
||||
ligneTestee++;
|
||||
}
|
||||
else if(X == 2){
|
||||
ligneTestee--;
|
||||
}
|
||||
else{
|
||||
// Rien
|
||||
}
|
||||
|
||||
if(colonneTestee < 0 || colonneTestee > nbreColonnes - 1){
|
||||
ok = false;
|
||||
}
|
||||
if(ligneTestee < 0 || ligneTestee > nbreLignes - 1){
|
||||
ok = false;
|
||||
}
|
||||
|
||||
//System.out.println("Debut des tests : " + ligneTestee);
|
||||
while(ok == true && grille[colonneTestee][ligneTestee].getCouleur().equals(grille[colonneChoisie][positionPion].getCouleur())){
|
||||
puissance4++;
|
||||
if(Y == 1){
|
||||
colonneTestee++;
|
||||
}
|
||||
else if(Y == 2){
|
||||
colonneTestee--;
|
||||
}
|
||||
else{
|
||||
// Rien
|
||||
}
|
||||
if(X == 1){
|
||||
ligneTestee++;
|
||||
}
|
||||
else if(X == 2){
|
||||
ligneTestee--;
|
||||
}
|
||||
else{
|
||||
// Rien
|
||||
}
|
||||
//System.out.println("Colonne : " + colonneTestee + ". Ligne : " + ligneTestee);
|
||||
if(colonneTestee < 0 || colonneTestee > nbreColonnes - 1){
|
||||
ok = false;
|
||||
}
|
||||
if(ligneTestee < 0 || ligneTestee > nbreLignes - 1){
|
||||
ok = false;
|
||||
}
|
||||
}
|
||||
|
||||
return puissance4;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param colonne - Colonne choisise
|
||||
* @return Position du pion dans la colonne
|
||||
*/
|
||||
/**
|
||||
* Permet de recuperer la position du pion dans une colonne donnee
|
||||
*/
|
||||
public int getPosition(int colonne)
|
||||
{
|
||||
return positions[colonne];
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return Collection de joueurs
|
||||
*/
|
||||
/**
|
||||
* On recupere une collection de joueurs sous forme de Vecteurs
|
||||
*/
|
||||
public Vector getJoueurs(){
|
||||
return CollectionJoueurs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Affirme que nous changeons de joueurs (ce qui n'inclue pas le fait que nous ayons a le recuperer !)
|
||||
*
|
||||
*/
|
||||
public void setAlternanceJoueur(){
|
||||
alternanceJoueur = !alternanceJoueur;
|
||||
}
|
||||
}
|
4
G5a/Puissance4/puissance4.manifest
Normal file
4
G5a/Puissance4/puissance4.manifest
Normal file
@ -0,0 +1,4 @@
|
||||
Manifest-Version: 1.0
|
||||
Sealed: true
|
||||
Main-Class: fr.blankoworld.plateau.IhmPuissance4
|
||||
|
BIN
G5a/Puissance4/test/Principale.class
Normal file
BIN
G5a/Puissance4/test/Principale.class
Normal file
Binary file not shown.
51
G5a/Puissance4/test/Principale.java
Normal file
51
G5a/Puissance4/test/Principale.java
Normal file
@ -0,0 +1,51 @@
|
||||
package test;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Principale {
|
||||
|
||||
private Vector l1 = new Vector(6);
|
||||
private Vector l2 = new Vector(6);
|
||||
private Vector l3 = new Vector(6);
|
||||
private Vector l4 = new Vector(6);
|
||||
private Vector l5 = new Vector(6);
|
||||
private Vector l6 = new Vector(6);
|
||||
private Vector l7 = new Vector(6);
|
||||
|
||||
private void afficheJeu()
|
||||
{
|
||||
System.out.print(l7+"\n");
|
||||
System.out.print(l6+"\n");
|
||||
System.out.print(l5+"\n");
|
||||
System.out.print(l4+"\n");
|
||||
System.out.print(l3+"\n");
|
||||
System.out.print(l2+"\n");
|
||||
System.out.print(l1);
|
||||
}
|
||||
|
||||
private void initJeu()
|
||||
{
|
||||
for(int i=0; i<14; i++) //14 car caractere cod<6F> sur 2 octets
|
||||
{
|
||||
l1.add("1");
|
||||
l2.add("2");
|
||||
l3.add("3");
|
||||
l4.add("4");
|
||||
l5.add("5");
|
||||
l6.add("6");
|
||||
l7.add("7");
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
l1.set(3, "X");
|
||||
}
|
||||
|
||||
public static void main(String[] args){
|
||||
Principale p4 = new Principale();
|
||||
|
||||
p4.initJeu();
|
||||
p4.afficheJeu();
|
||||
}
|
||||
}
|
||||
|
BIN
G5a/Puissance4/test/VadrouilleGrille.class
Normal file
BIN
G5a/Puissance4/test/VadrouilleGrille.class
Normal file
Binary file not shown.
70
G5a/Puissance4/test/VadrouilleGrille.java
Normal file
70
G5a/Puissance4/test/VadrouilleGrille.java
Normal file
@ -0,0 +1,70 @@
|
||||
package test;
|
||||
|
||||
/**
|
||||
* @author Olivier DOSSMANN
|
||||
*
|
||||
*/
|
||||
public class VadrouilleGrille {
|
||||
|
||||
private int[][] grille;
|
||||
private int[] positions;
|
||||
private int nbreColonnes = 7;
|
||||
private int nbreLignes = 6;
|
||||
|
||||
public static void main(String args[]){
|
||||
// Instructions de lancement
|
||||
|
||||
}
|
||||
|
||||
public void initialiser()
|
||||
{
|
||||
int nbr;
|
||||
// Cr<43>ation de la grille
|
||||
grille = new int[nbreColonnes][nbreLignes];
|
||||
|
||||
// Cr<43>ation tu tableau de positionnement
|
||||
positions = new int[7];
|
||||
|
||||
// Initialisation du tableau
|
||||
for (int i = 0; i < nbreColonnes; i++){
|
||||
for(int j = 0; j < nbreLignes; j++){
|
||||
nbr = (int)Math.random()*3;
|
||||
grille[i][j] = nbr;
|
||||
}
|
||||
}
|
||||
|
||||
// Initialisation des positions
|
||||
for (int i = 0; i < nbreColonnes; i++){
|
||||
positions[i] = 0;
|
||||
}
|
||||
// // Test
|
||||
// grille[4][5] = j1.donneJeton();
|
||||
}
|
||||
|
||||
public void reinitialiser(){
|
||||
lancer();
|
||||
}
|
||||
|
||||
public void afficherGrille(){
|
||||
for (int i = nbreLignes - 1; i >= 0; i--){
|
||||
for(int j = 0; j < nbreColonnes; j++){
|
||||
System.out.print(grille[j][i] + "|");
|
||||
//System.out.print(j + "/" + i + "|");
|
||||
}
|
||||
System.out.print("\n");
|
||||
}
|
||||
System.out.println("--------------");
|
||||
System.out.println("1|2|3|4|5|6|7|");
|
||||
}
|
||||
|
||||
public void lancer(){
|
||||
System.out.println("Lancement du jeu de plateau");
|
||||
|
||||
// Initialisation du plateau
|
||||
this.initialiser();
|
||||
|
||||
// Affichage du plateau pour v<>rification
|
||||
this.afficherGrille();
|
||||
|
||||
}
|
||||
}
|
7
G5a/Solutions/2-exoSyntaxeJava/Bonjour.java
Normal file
7
G5a/Solutions/2-exoSyntaxeJava/Bonjour.java
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
class Bonjour { // essai de hello world
|
||||
public static void main (String[] args) {
|
||||
System.out.println ("Bonjour !");
|
||||
|
||||
}
|
||||
}
|
11
G5a/Solutions/2-exoSyntaxeJava/BonjourToi1.java
Normal file
11
G5a/Solutions/2-exoSyntaxeJava/BonjourToi1.java
Normal file
@ -0,0 +1,11 @@
|
||||
import iutsud.Console;
|
||||
class BonjourToi1{ // essai d'entr<74>e-sortie caractere avec le package iutsud
|
||||
public static void main (String[] args) {
|
||||
String nom;int an;
|
||||
System.out.print ("tapez votre nom : ");
|
||||
nom=Console.readLine();
|
||||
System.out.print ("tapez votre annee de naissance : ");
|
||||
an=Console.readInt();
|
||||
System.out.println ("Bonjour "+nom+" ! Vous avez "+(2007-an)+" ans");
|
||||
}
|
||||
}
|
15
G5a/Solutions/2-exoSyntaxeJava/BonjourToi2.java
Normal file
15
G5a/Solutions/2-exoSyntaxeJava/BonjourToi2.java
Normal file
@ -0,0 +1,15 @@
|
||||
import javax.swing.JOptionPane;
|
||||
import java.util.Calendar;
|
||||
class BonjourToi2 { // essai de hello world avec une entree et une sortie Swing
|
||||
public static void main (String[] args) {
|
||||
String nom,ch;
|
||||
int an,anneeCourante;
|
||||
anneeCourante=Calendar.getInstance().get(Calendar.YEAR);
|
||||
nom=JOptionPane.showInputDialog("taper votre nom ");
|
||||
ch=JOptionPane.showInputDialog("taper votre annee de naissance (4chiffres)");
|
||||
System.out.println("nom="+nom+"; naiss="+ch+"; annee courante : "+anneeCourante);
|
||||
an=Integer.parseInt(ch);
|
||||
JOptionPane.showMessageDialog(null,"Bonjour "+nom+"! Vous avez "+(anneeCourante-an)+"ans");
|
||||
System.exit(0);
|
||||
}
|
||||
}
|
13
G5a/Solutions/2-exoSyntaxeJava/InverseArgs.java
Normal file
13
G5a/Solutions/2-exoSyntaxeJava/InverseArgs.java
Normal file
@ -0,0 +1,13 @@
|
||||
public class InverseArgs {
|
||||
public static void main (String[] args) {
|
||||
int longr;
|
||||
longr=args.length;
|
||||
if (longr==0)
|
||||
System.out.println ("il n'y a pas d'arguments !");
|
||||
else System.out.println("nb d'args :"+longr);
|
||||
for (int i =longr-1 ; i>=0; i--) {
|
||||
System.out.print(" "+args[i]);
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
26
G5a/Solutions/2-exoSyntaxeJava/Premier.java
Normal file
26
G5a/Solutions/2-exoSyntaxeJava/Premier.java
Normal file
@ -0,0 +1,26 @@
|
||||
import javax.swing.JOptionPane;
|
||||
class Premier { // Determine si un nb est premier ou non
|
||||
public static void main (String[] args) {
|
||||
String nb,reponse ;
|
||||
int n;
|
||||
boolean premier;
|
||||
nb=JOptionPane.showInputDialog("tapez votre nombre");
|
||||
n=Integer.parseInt(nb);
|
||||
while (n!=0) {
|
||||
premier = true;
|
||||
if (n==1) {JOptionPane.showMessageDialog(null,"1 n'est pas premier par convention ");
|
||||
premier=false;}
|
||||
for (int i=2;i<n; i++) {
|
||||
System.out.println(n+" "+i+" "+n%i);
|
||||
if (n%i==0) {
|
||||
JOptionPane.showMessageDialog(null,n+" n'est pas premier :multiple de "+ i);
|
||||
premier=false;
|
||||
break;}
|
||||
}
|
||||
if (premier)JOptionPane.showMessageDialog(null,n+" est un nb premier ");
|
||||
nb=JOptionPane.showInputDialog("tapez votre nombre");
|
||||
n=Integer.parseInt(nb);
|
||||
}
|
||||
System.exit(0);
|
||||
}
|
||||
}
|
25
G5a/Solutions/2-exoSyntaxeJava/Puissance.java
Normal file
25
G5a/Solutions/2-exoSyntaxeJava/Puissance.java
Normal file
@ -0,0 +1,25 @@
|
||||
import iutsud.Console;
|
||||
/** calcul de x puissance y avec un algorithme basique !*/
|
||||
class Puissance{ // calcul de x puissance y avec un algorithme basique
|
||||
public static void main (String[] args) {
|
||||
int x,y,p;
|
||||
System.out.println ("Calcul de x puissance y");
|
||||
System.out.print ("tapez la valeur de x : ");
|
||||
x=Console.readInt();
|
||||
System.out.print ("tapez la valeur de y : ");
|
||||
y=Console.readInt();
|
||||
if (y==0)
|
||||
if (x==0)
|
||||
System.out.println("0 puissance 0 est indefini");
|
||||
else System.out.println(x+ " puissance 0 = 1");
|
||||
|
||||
else {
|
||||
p=1;
|
||||
for (int i=0;i<y;i++) {
|
||||
p=p*x;
|
||||
}
|
||||
System.out.println(x+ " puissance "+y +" ="+ p);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
17
G5a/Solutions/2-exoSyntaxeJava/SommeEntiers.java
Normal file
17
G5a/Solutions/2-exoSyntaxeJava/SommeEntiers.java
Normal file
@ -0,0 +1,17 @@
|
||||
public class SommeEntiers {
|
||||
public static void main (String args[]) {
|
||||
int longr=args.length;
|
||||
switch (longr){
|
||||
case 0 : System.out.println("Eh banane, t'as oublie les arguments !!!");
|
||||
break;
|
||||
case 1 : System.out.println("Quoi, seulement un arg ? "+args[0]);
|
||||
default :
|
||||
int somme=0;
|
||||
for (int i=0 ; i<args.length ; i++) {
|
||||
int j=Integer.parseInt(args[i]);
|
||||
somme+=j;
|
||||
}
|
||||
System.out.println("somme : "+somme);
|
||||
}
|
||||
}
|
||||
}
|
262
G5a/Solutions/3-exosClasses-1/1-Adherent/Adherent.java
Normal file
262
G5a/Solutions/3-exosClasses-1/1-Adherent/Adherent.java
Normal file
@ -0,0 +1,262 @@
|
||||
|
||||
/** Java class "Adherent.java" generated from Poseidon for UML.
|
||||
* Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.
|
||||
* Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.
|
||||
*/
|
||||
package adherents;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*/
|
||||
public class Adherent {
|
||||
|
||||
///////////////////////////////////////
|
||||
// attributes
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private int numeroAdherent;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private String nom;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private String ville;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private int anneeNaissance;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represente le montant de la cotisation (commun à tous les adherents)
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
private static int c_montantCotisation=45;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represente le montant actuellement verse par l'adherent
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
private int cotisationVersee;
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a String with ...
|
||||
* </p>
|
||||
*/
|
||||
public String getNom() {
|
||||
// your code here
|
||||
return this.nom;
|
||||
} // end getNom
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public int getNumeroAdh() {
|
||||
return this.numeroAdherent;
|
||||
} // end getNumeroAdh
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a int with ...
|
||||
* </p>
|
||||
*/
|
||||
public int getAge() {
|
||||
// your code here
|
||||
return 2005-anneeNaissance;
|
||||
} // end getAge
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public int getCotisationVersee() {
|
||||
return cotisationVersee;
|
||||
} // end getCotisationVersee
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* @return a boolean : l'adherent est ou non à jour de cotisation
|
||||
* </p>
|
||||
*/
|
||||
public boolean aJour() {
|
||||
// your code here
|
||||
if (cotisationVersee>=c_montantCotisation)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
||||
} // end aJour
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Ajoute la somme passee en param au montant de la cotisation versee
|
||||
* </p>
|
||||
* <p>
|
||||
*
|
||||
* @return a boolean qui dit si l'adherent est a jour apres ce versement
|
||||
* </p>
|
||||
* <p>
|
||||
* @param versement montant de la somme versee
|
||||
* </p>
|
||||
*/
|
||||
public boolean cotiser(int versement) {
|
||||
// your code here
|
||||
cotisationVersee+=versement;
|
||||
return aJour();
|
||||
} // end cotiser
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* @return a String : "A jour" ou " PAS A JOUR !!!"
|
||||
* </p>
|
||||
*/
|
||||
public String etat() {
|
||||
// your code here
|
||||
String etat;
|
||||
if (this.aJour()) etat = "a jour"; else etat = "PAS A JOUR !!!";
|
||||
return etat;
|
||||
} // end etat
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a String with ...
|
||||
* </p>
|
||||
*/
|
||||
public String toString() {
|
||||
// your code here
|
||||
return (getNumeroAdh()+" "+getNom()+" "+getVille()+" "+getAge()+" ans : a cotise : "+getCotisationVersee()+" "+etat());
|
||||
} // end toString
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
* @param args ...
|
||||
* </p>
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
// your code here
|
||||
Adherent a1=new Adherent(1,"Dupont","Paris",1980);
|
||||
Adherent a2=new Adherent(2,"Meyer","Strasbourg",1955);
|
||||
Adherent a3=new Adherent(3,"Legwenn","Brest",1960);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a1.cotiser(45);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(30);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a3.cotiser(40);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(15);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
} // end main
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Constructeur d'Adherent
|
||||
* </p>
|
||||
* <p>
|
||||
*
|
||||
* @return a Adherent
|
||||
* </p>
|
||||
* <p>
|
||||
* @param num ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param nom ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param vil ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param nss ...
|
||||
* </p>
|
||||
*/
|
||||
public Adherent(int num, String nom, String vil, int nss) {
|
||||
// your code here
|
||||
this.numeroAdherent=num;
|
||||
this.nom=nom;
|
||||
this.ville=vil;
|
||||
this.anneeNaissance=nss;
|
||||
} // end Adherent
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public String getVille() {
|
||||
return ville;
|
||||
} // end getVille
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public void setVille(String _ville) {
|
||||
ville = _ville;
|
||||
} // end setVille
|
||||
|
||||
} // end Adherent
|
||||
|
||||
|
||||
|
66
G5a/Solutions/3-exosClasses-1/1-Adherent/Gerant.java
Normal file
66
G5a/Solutions/3-exosClasses-1/1-Adherent/Gerant.java
Normal file
@ -0,0 +1,66 @@
|
||||
|
||||
/** Java class "Gerant.java" generated from Poseidon for UML.
|
||||
* Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.
|
||||
* Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.
|
||||
*/
|
||||
package adherents;
|
||||
|
||||
import adherents.Adherent;
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*/
|
||||
class Gerant {
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
* @param args ...
|
||||
* </p>
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
|
||||
// your code here
|
||||
Adherent a1=new Adherent(1,"Dupont","Paris",1980);
|
||||
Adherent a2=new Adherent(2,"Meyer","Strasbourg",1955);
|
||||
Adherent a3=new Adherent(3,"Legwenn","Brest",1960);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a1.cotiser(45);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(30);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a3.cotiser(40);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(15);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
} // end main
|
||||
|
||||
} // end Gerant
|
||||
|
||||
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
@ -0,0 +1,263 @@
|
||||
|
||||
/** Java class "Adherent.java" generated from Poseidon for UML.
|
||||
* Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.
|
||||
* Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.
|
||||
*/
|
||||
package Pack_adherents;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*/
|
||||
public class Adherent {
|
||||
|
||||
///////////////////////////////////////
|
||||
// attributes
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private int numeroAdherent;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private String nom;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private String ville;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
private int anneeNaissance;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represente le montant de la cotisation (commun à tous les adherents)
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
private static int c_montantCotisation=45;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represente le montant actuellement verse par l'adherent
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
private int cotisationVersee;
|
||||
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a String with ...
|
||||
* </p>
|
||||
*/
|
||||
public String getNom() {
|
||||
// your code here
|
||||
return this.nom;
|
||||
} // end getNom
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public int getNumeroAdh() {
|
||||
return this.numeroAdherent;
|
||||
} // end getNumeroAdh
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a int with ...
|
||||
* </p>
|
||||
*/
|
||||
public int getAge() {
|
||||
// your code here
|
||||
return 2005-anneeNaissance;
|
||||
} // end getAge
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public int getCotisationVersee() {
|
||||
return cotisationVersee;
|
||||
} // end getCotisationVersee
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* @return a boolean : l'adherent est ou non à jour de cotisation
|
||||
* </p>
|
||||
*/
|
||||
public boolean aJour() {
|
||||
// your code here
|
||||
if (cotisationVersee>=c_montantCotisation)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
||||
} // end aJour
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Ajoute la somme passee en param au montant de la cotisation versee
|
||||
* </p>
|
||||
* <p>
|
||||
*
|
||||
* @return a boolean qui dit si l'adherent est a jour apres ce versement
|
||||
* </p>
|
||||
* <p>
|
||||
* @param versement montant de la somme versee
|
||||
* </p>
|
||||
*/
|
||||
public boolean cotiser(int versement) {
|
||||
// your code here
|
||||
cotisationVersee+=versement;
|
||||
return aJour();
|
||||
} // end cotiser
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* @return a String : "A jour" ou " PAS A JOUR !!!"
|
||||
* </p>
|
||||
*/
|
||||
public String etat() {
|
||||
// your code here
|
||||
String etat;
|
||||
if (this.aJour()) etat = "a jour"; else etat = "PAS A JOUR !!!";
|
||||
return etat;
|
||||
} // end etat
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a String with ...
|
||||
* </p>
|
||||
*/
|
||||
public String toString() {
|
||||
// your code here
|
||||
return (getNumeroAdh()+" "+getNom()+" "+getVille()+" "+getAge()+" ans : a cotise : "+getCotisationVersee()+" "+etat());
|
||||
} // end toString
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
* @param args ...
|
||||
* </p>
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
// your code here
|
||||
Adherent a1=new Adherent(1,"Dupont","Paris",1980);
|
||||
Adherent a2=new Adherent(2,"Meyer","Strasbourg",1955);
|
||||
Adherent a3=new Adherent(3,"Legwenn","Brest",1960);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a1.cotiser(45);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(30);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a3.cotiser(40);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
System.out.println ();
|
||||
a2.cotiser(15);
|
||||
System.out.println (a1);
|
||||
System.out.println (a2);
|
||||
System.out.println (a3);
|
||||
} // end main
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Constructeur d'Adherent
|
||||
* </p>
|
||||
* <p>
|
||||
*
|
||||
* @return a Adherent
|
||||
* </p>
|
||||
* <p>
|
||||
* @param num ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param nom ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param vil ...
|
||||
* </p>
|
||||
* <p>
|
||||
* @param nss ...
|
||||
* </p>
|
||||
*/
|
||||
public Adherent(int num, String nom, String vil, int nss) {
|
||||
// your code here
|
||||
this.numeroAdherent=num;
|
||||
this.nom=nom;
|
||||
this.ville=vil;
|
||||
this.anneeNaissance=nss;
|
||||
} // end Adherent
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public String getVille() {
|
||||
return ville;
|
||||
} // end getVille
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Represents ...
|
||||
* </p>
|
||||
*/
|
||||
public void setVille(String _ville) {
|
||||
ville = _ville;
|
||||
} // end setVille
|
||||
|
||||
} // end Adherent
|
||||
|
||||
|
||||
|
@ -0,0 +1,134 @@
|
||||
|
||||
/** Java class "Gerant.java" generated from Poseidon for UML.
|
||||
* Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.
|
||||
* Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.
|
||||
*/
|
||||
package Pack_adherents;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*/
|
||||
class Gerant {
|
||||
|
||||
///////////////////////////////////////
|
||||
// attributes
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*/
|
||||
public static Collection adherent = new Vector();
|
||||
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
*
|
||||
*
|
||||
* @param args ...
|
||||
* </p>
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
|
||||
|
||||
|
||||
|
||||
Adherent a1=new Adherent(1,"Dupont","Paris",1980);
|
||||
addAdherent(a1);
|
||||
Adherent a2=new Adherent(2,"Meyer","Strasbourg",1955);
|
||||
addAdherent(a2);
|
||||
Adherent a3=new Adherent(3,"Legwenn","Brest",1960);
|
||||
addAdherent(a3);
|
||||
for (int i=0;i<adherent.size();i++){
|
||||
Vector v=(Vector)getAdherents();
|
||||
Adherent a=(Adherent)v.elementAt(i);
|
||||
System.out.println (a);
|
||||
}
|
||||
System.out.println ();
|
||||
a1.cotiser(45);
|
||||
for (int i=0;i<adherent.size();i++){
|
||||
Vector v=(Vector)getAdherents();
|
||||
Adherent a=(Adherent)v.elementAt(i);
|
||||
System.out.println (a);
|
||||
}
|
||||
System.out.println ();
|
||||
a2.cotiser(30);
|
||||
for (int i=0;i<adherent.size();i++){
|
||||
Vector v=(Vector)getAdherents();
|
||||
Adherent a=(Adherent)v.elementAt(i);
|
||||
System.out.println (a);
|
||||
}
|
||||
System.out.println ();
|
||||
a3.cotiser(40);
|
||||
for (int i=0;i<adherent.size();i++){
|
||||
Vector v=(Vector)getAdherents();
|
||||
Adherent a=(Adherent)v.elementAt(i);
|
||||
System.out.println (a);
|
||||
}
|
||||
System.out.println ();
|
||||
a2.cotiser(15);
|
||||
for (int i=0;i<adherent.size();i++){
|
||||
Vector v=(Vector)getAdherents();
|
||||
Adherent a=(Adherent)v.elementAt(i);
|
||||
System.out.println (a);
|
||||
}
|
||||
} // end main
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* @return a Collection with ...
|
||||
* </p>
|
||||
*/
|
||||
public static Collection getAdherents() {
|
||||
return adherent;
|
||||
} // end getAdherents
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
* @param adherent ...
|
||||
* </p>
|
||||
*/
|
||||
public static void addAdherent(Adherent adherent) {
|
||||
if (! Gerant.adherent.contains(adherent)) Gerant.adherent.add(adherent);
|
||||
} // end addAdherent
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Does ...
|
||||
* </p><p>
|
||||
*
|
||||
* </p><p>
|
||||
*
|
||||
* @param adherent ...
|
||||
* </p>
|
||||
*/
|
||||
public static void removeAdherent(Adherent adherent) {
|
||||
Gerant.adherent.remove(adherent);
|
||||
} // end removeAdherent
|
||||
|
||||
} // end Gerant
|
||||
|
||||
|
||||
|
21
G5a/Solutions/3-exosClasses-1/3-PersonneFemme/Femme.java
Normal file
21
G5a/Solutions/3-exosClasses-1/3-PersonneFemme/Femme.java
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
public class Femme extends Personne {
|
||||
|
||||
///////////////////////////////////////
|
||||
// attributes
|
||||
private String nomjf;
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
public Femme(String nom,int an, String njf) {
|
||||
super(nom,an);
|
||||
this.nomjf = njf;
|
||||
} // end constructeur
|
||||
public String toString(){
|
||||
return super.toString()+" nee "+nomjf;
|
||||
}
|
||||
} // end Femme
|
||||
|
||||
|
||||
|
54
G5a/Solutions/3-exosClasses-1/3-PersonneFemme/Personne.java
Normal file
54
G5a/Solutions/3-exosClasses-1/3-PersonneFemme/Personne.java
Normal file
@ -0,0 +1,54 @@
|
||||
|
||||
/** Java class "Personne.java"
|
||||
Repr<EFBFBD>sente une personne quelconque
|
||||
*/
|
||||
import java.util.*;
|
||||
public class Personne {
|
||||
|
||||
///////////////////////////////////////
|
||||
// attributes
|
||||
|
||||
private String nom;
|
||||
private int anneeNaiss;
|
||||
|
||||
|
||||
///////////////////////////////////////
|
||||
// operations
|
||||
|
||||
public String getNom() {
|
||||
return nom;
|
||||
}
|
||||
public void setNom(String _nom) {
|
||||
nom = _nom;
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Constructeur de Personne
|
||||
* </p><p>
|
||||
*
|
||||
* @return a Personne * </p><p>
|
||||
* @param i identifiant
|
||||
* </p> <p>
|
||||
* @param n nom
|
||||
* </p>
|
||||
*/
|
||||
public Personne(String n,int an) {
|
||||
this.nom=n;
|
||||
this.anneeNaiss=an;
|
||||
}
|
||||
public String toString() {
|
||||
return nom+" "+anneeNaiss;
|
||||
}
|
||||
public static void main (String args[]) {
|
||||
Personne p1 = new Personne("Dupont", 1964);
|
||||
Personne p2 = new Personne("Dulac", 1983);
|
||||
Personne p3 = new Femme("Mme Dupont", 1972,"Durand");
|
||||
System.out.println (p1);
|
||||
System.out.println (p2);
|
||||
System.out.println (p3);
|
||||
}
|
||||
} // end Personne
|
||||
|
||||
|
||||
|
79
G5a/Solutions/3-exosClasses-1/4-Confiture/Confiture.java
Normal file
79
G5a/Solutions/3-exosClasses-1/4-Confiture/Confiture.java
Normal file
@ -0,0 +1,79 @@
|
||||
public class Confiture {
|
||||
|
||||
// Attributs
|
||||
private String cuisinier, parfum;
|
||||
private int annee;
|
||||
private int id;
|
||||
private static int c_nextId=1;
|
||||
|
||||
|
||||
// Constructeur
|
||||
public Confiture ( String parfum, String cuisinier,int an ) {
|
||||
this.parfum = parfum;
|
||||
this.cuisinier = cuisinier;
|
||||
this.annee = an;
|
||||
this.id=c_nextId++;
|
||||
|
||||
}
|
||||
|
||||
// Accesseurs
|
||||
public String getCuisinier() {
|
||||
return this.cuisinier;
|
||||
}
|
||||
|
||||
public String getParfum() {
|
||||
return this.parfum;
|
||||
}
|
||||
|
||||
public int getAnnee() {
|
||||
return this.annee;
|
||||
}
|
||||
|
||||
// Modificateurs
|
||||
public void setAnnee( int annee ) {
|
||||
if ( annee >= 0 )
|
||||
this.annee = annee;
|
||||
else
|
||||
System.err.println( "Attention ! l'ann<6E>e entr<74>e n'est pas valide" );
|
||||
}
|
||||
|
||||
public void setCuisinier( String cuisinier ) {
|
||||
this.cuisinier = cuisinier;
|
||||
}
|
||||
|
||||
public void setParfum( String parfum ) {
|
||||
this.parfum = parfum;
|
||||
}
|
||||
|
||||
|
||||
// M<>thode d'affichage
|
||||
public String toString() {
|
||||
StringBuffer infos = new StringBuffer(" ");
|
||||
infos.append(this.id);
|
||||
infos.append(" : Confiture de ").append(this.parfum);
|
||||
infos.append(" par ").append(this.cuisinier);
|
||||
infos.append(" (").append(this.annee).append(")");
|
||||
String res=new String(infos);
|
||||
return res;
|
||||
}
|
||||
|
||||
public static void main( String args[] ) {
|
||||
|
||||
// Creation des deux confitures
|
||||
Confiture conf1 = new Confiture("fraise","Maman",2007 );
|
||||
Confiture conf2 = new Confiture("framboise","Moi",2006 );
|
||||
Confiture conf3 = new Confiture("cassis","Meme",2003 );
|
||||
|
||||
// Modification d'une ann<6E>e
|
||||
conf2.setAnnee( 2005 );
|
||||
|
||||
// Affichage des cuisiniers
|
||||
System.out.println( "Cuisinier confiture 1 : " + conf1.getCuisinier() );
|
||||
System.out.println( "Cuisinier confiture 2 : " + conf2.getCuisinier() );
|
||||
|
||||
// Affichage des informations sur la confiture par la m<>thode println
|
||||
System.out.println( conf1 );
|
||||
System.out.println( conf2 );
|
||||
System.out.println( conf3 );
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user