diff --git a/bd.properties b/bd.properties index 3cb3e93..0416857 100644 --- a/bd.properties +++ b/bd.properties @@ -1,4 +1,4 @@ -#HSQL Database Engine 2.3.0 -#Sun Dec 08 15:15:04 CET 2013 -version=2.3.0 -modified=no +#HSQL Database Engine 2.3.0 +#Sun Dec 08 20:18:53 CET 2013 +version=2.3.0 +modified=no diff --git a/bd.script b/bd.script index edac624..bde4f2e 100644 --- a/bd.script +++ b/bd.script @@ -1,69 +1,81 @@ -SET DATABASE UNIQUE NAME HSQLDB42BD230C27 -SET DATABASE GC 0 -SET DATABASE DEFAULT RESULT MEMORY ROWS 0 -SET DATABASE EVENT LOG LEVEL 0 -SET DATABASE SQL NAMES FALSE -SET DATABASE SQL REFERENCES FALSE -SET DATABASE SQL SIZE TRUE -SET DATABASE SQL TYPES FALSE -SET DATABASE SQL TDC DELETE TRUE -SET DATABASE SQL TDC UPDATE TRUE -SET DATABASE SQL TRANSLATE TTI TYPES TRUE -SET DATABASE SQL CONCAT NULLS TRUE -SET DATABASE SQL UNIQUE NULLS TRUE -SET DATABASE SQL CONVERT TRUNCATE TRUE -SET DATABASE SQL AVG SCALE 0 -SET DATABASE SQL DOUBLE NAN TRUE -SET DATABASE TRANSACTION CONTROL LOCKS -SET DATABASE DEFAULT ISOLATION LEVEL READ COMMITTED -SET DATABASE TRANSACTION ROLLBACK ON CONFLICT TRUE -SET DATABASE TEXT TABLE DEFAULTS '' -SET FILES WRITE DELAY 500 MILLIS -SET FILES BACKUP INCREMENT TRUE -SET FILES CACHE SIZE 10000 -SET FILES CACHE ROWS 50000 -SET FILES SCALE 32 -SET FILES LOB SCALE 32 -SET FILES DEFRAG 0 -SET FILES NIO TRUE -SET FILES NIO SIZE 256 -SET FILES LOG TRUE -SET FILES LOG SIZE 50 -CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e' -ALTER USER SA SET LOCAL TRUE -CREATE SCHEMA PUBLIC AUTHORIZATION DBA -SET SCHEMA PUBLIC -CREATE MEMORY TABLE PUBLIC.MEMBRES(IDMEMBRE INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,NOM VARCHAR(20),PRENOM VARCHAR(20),ADRESSE VARCHAR(50),DTN DATE,NUMTEL VARCHAR(20),DROIT INTEGER,DATEADHESION DATE,PASSWORD VARCHAR(20)) -ALTER TABLE PUBLIC.MEMBRES ALTER COLUMN IDMEMBRE RESTART WITH 0 -CREATE MEMORY TABLE PUBLIC.EVENEMENTS(IDEVENEMENT INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,TYPE INTEGER,DATEE DATE,LIEU VARCHAR(20)) -ALTER TABLE PUBLIC.EVENEMENTS ALTER COLUMN IDEVENEMENT RESTART WITH 17 -CREATE MEMORY TABLE PUBLIC.PARTICIPER(IDEVENEMENT INTEGER,IDMEMBRE INTEGER,ROLE INTEGER,PRIMARY KEY(IDMEMBRE,IDEVENEMENT),FOREIGN KEY(IDMEMBRE) REFERENCES PUBLIC.MEMBRES(IDMEMBRE),FOREIGN KEY(IDEVENEMENT) REFERENCES PUBLIC.EVENEMENTS(IDEVENEMENT)) -CREATE MEMORY TABLE PUBLIC.DISCIPLINES(NOMDISIPLINE VARCHAR(20) PRIMARY KEY,IDEVENEMENT INTEGER,FOREIGN KEY(IDEVENEMENT) REFERENCES PUBLIC.EVENEMENTS(IDEVENEMENT)) -ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 -SET DATABASE DEFAULT INITIAL SCHEMA PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC -GRANT DBA TO SA -SET SCHEMA SYSTEM_LOBS -INSERT INTO BLOCKS VALUES(0,2147483647,0) -SET SCHEMA PUBLIC -INSERT INTO EVENEMENTS VALUES(0,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(1,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(2,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(3,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(4,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(5,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(6,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(7,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(8,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(9,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(10,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(11,0,'2013-10-12','lol') -INSERT INTO EVENEMENTS VALUES(12,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(13,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(14,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(15,1,'2012-11-20','toulouse') -INSERT INTO EVENEMENTS VALUES(16,1,'2012-11-20','toulouse') +SET DATABASE UNIQUE NAME HSQLDB42BD230C27 +SET DATABASE GC 0 +SET DATABASE DEFAULT RESULT MEMORY ROWS 0 +SET DATABASE EVENT LOG LEVEL 0 +SET DATABASE SQL NAMES FALSE +SET DATABASE SQL REFERENCES FALSE +SET DATABASE SQL SIZE TRUE +SET DATABASE SQL TYPES FALSE +SET DATABASE SQL TDC DELETE TRUE +SET DATABASE SQL TDC UPDATE TRUE +SET DATABASE SQL TRANSLATE TTI TYPES TRUE +SET DATABASE SQL CONCAT NULLS TRUE +SET DATABASE SQL UNIQUE NULLS TRUE +SET DATABASE SQL CONVERT TRUNCATE TRUE +SET DATABASE SQL AVG SCALE 0 +SET DATABASE SQL DOUBLE NAN TRUE +SET DATABASE TRANSACTION CONTROL LOCKS +SET DATABASE DEFAULT ISOLATION LEVEL READ COMMITTED +SET DATABASE TRANSACTION ROLLBACK ON CONFLICT TRUE +SET DATABASE TEXT TABLE DEFAULTS '' +SET FILES WRITE DELAY 500 MILLIS +SET FILES BACKUP INCREMENT TRUE +SET FILES CACHE SIZE 10000 +SET FILES CACHE ROWS 50000 +SET FILES SCALE 32 +SET FILES LOB SCALE 32 +SET FILES DEFRAG 0 +SET FILES NIO TRUE +SET FILES NIO SIZE 256 +SET FILES LOG TRUE +SET FILES LOG SIZE 50 +CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e' +ALTER USER SA SET LOCAL TRUE +CREATE SCHEMA PUBLIC AUTHORIZATION DBA +SET SCHEMA PUBLIC +CREATE MEMORY TABLE PUBLIC.MEMBRES(IDMEMBRE INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,NOM VARCHAR(20),PRENOM VARCHAR(20),ADRESSE VARCHAR(50),DTN DATE,NUMTEL VARCHAR(20),DROIT INTEGER,DATEADHESION DATE,PASSWORD VARCHAR(20)) +ALTER TABLE PUBLIC.MEMBRES ALTER COLUMN IDMEMBRE RESTART WITH 0 +CREATE MEMORY TABLE PUBLIC.EVENEMENTS(IDEVENEMENT INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,TYPE INTEGER,DATEE DATE,LIEU VARCHAR(20)) +ALTER TABLE PUBLIC.EVENEMENTS ALTER COLUMN IDEVENEMENT RESTART WITH 29 +CREATE MEMORY TABLE PUBLIC.PARTICIPER(IDEVENEMENT INTEGER,IDMEMBRE INTEGER,ROLE INTEGER,PRIMARY KEY(IDMEMBRE,IDEVENEMENT),FOREIGN KEY(IDMEMBRE) REFERENCES PUBLIC.MEMBRES(IDMEMBRE),FOREIGN KEY(IDEVENEMENT) REFERENCES PUBLIC.EVENEMENTS(IDEVENEMENT)) +CREATE MEMORY TABLE PUBLIC.DISCIPLINES(NOMDISIPLINE VARCHAR(20) PRIMARY KEY,IDEVENEMENT INTEGER,FOREIGN KEY(IDEVENEMENT) REFERENCES PUBLIC.EVENEMENTS(IDEVENEMENT)) +ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 +SET DATABASE DEFAULT INITIAL SCHEMA PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC +GRANT DBA TO SA +SET SCHEMA SYSTEM_LOBS +INSERT INTO BLOCKS VALUES(0,2147483647,0) +SET SCHEMA PUBLIC +INSERT INTO EVENEMENTS VALUES(0,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(1,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(2,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(3,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(4,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(5,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(6,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(7,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(8,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(9,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(10,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(11,0,'2013-10-12','lol') +INSERT INTO EVENEMENTS VALUES(12,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(13,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(14,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(15,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(16,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(17,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(18,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(19,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(20,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(21,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(22,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(23,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(24,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(25,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(26,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(27,1,'2012-11-20','toulouse') +INSERT INTO EVENEMENTS VALUES(28,1,'2012-11-20','toulouse') diff --git a/bin/controleur/CtrlAccesListe.class b/bin/controleur/CtrlAccesListe.class index e40a835..43f6637 100644 Binary files a/bin/controleur/CtrlAccesListe.class and b/bin/controleur/CtrlAccesListe.class differ diff --git a/bin/controleur/CtrlLogin.class b/bin/controleur/CtrlLogin.class index a1f0702..603c806 100644 Binary files a/bin/controleur/CtrlLogin.class and b/bin/controleur/CtrlLogin.class differ diff --git a/bin/controleur/CtrlSaisieMembre.class b/bin/controleur/CtrlSaisieMembre.class index b64c1ac..3909955 100644 Binary files a/bin/controleur/CtrlSaisieMembre.class and b/bin/controleur/CtrlSaisieMembre.class differ diff --git a/bin/controleur/TocToac.class b/bin/controleur/TocToac.class index 168d811..a7a29bf 100644 Binary files a/bin/controleur/TocToac.class and b/bin/controleur/TocToac.class differ diff --git a/bin/vue/DlgLogin.class b/bin/vue/DlgLogin.class new file mode 100644 index 0000000..adb2757 Binary files /dev/null and b/bin/vue/DlgLogin.class differ diff --git a/bin/vue/Planning.class b/bin/vue/Planning.class index 3d1991a..97813f8 100644 Binary files a/bin/vue/Planning.class and b/bin/vue/Planning.class differ diff --git a/doc/allclasses-frame.html b/doc/allclasses-frame.html new file mode 100644 index 0000000..0c33a6b --- /dev/null +++ b/doc/allclasses-frame.html @@ -0,0 +1,38 @@ + + + + + +All Classes + + + + +

All Classes

+
+ +
+ + diff --git a/doc/allclasses-noframe.html b/doc/allclasses-noframe.html new file mode 100644 index 0000000..9723df5 --- /dev/null +++ b/doc/allclasses-noframe.html @@ -0,0 +1,38 @@ + + + + + +All Classes + + + + +

All Classes

+
+ +
+ + diff --git a/doc/class-use/test.html b/doc/class-use/test.html new file mode 100644 index 0000000..2947372 --- /dev/null +++ b/doc/class-use/test.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class test + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
test

+
+
No usage of test
+ +
+ + + + + +
+ + + + diff --git a/doc/constant-values.html b/doc/constant-values.html new file mode 100644 index 0000000..b124d44 --- /dev/null +++ b/doc/constant-values.html @@ -0,0 +1,115 @@ + + + + + +Constant Field Values + + + + + + + +
+ + + + + +
+ + +
+

Constant Field Values

+

Contents

+
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/CtrlAccesListe.html b/doc/controleur/CtrlAccesListe.html new file mode 100644 index 0000000..ed379e6 --- /dev/null +++ b/doc/controleur/CtrlAccesListe.html @@ -0,0 +1,265 @@ + + + + + +CtrlAccesListe + + + + + + + +
+ + + + + +
+ + + +
+
controleur
+

Class CtrlAccesListe

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/controleur/CtrlLogin.html b/doc/controleur/CtrlLogin.html new file mode 100644 index 0000000..445c311 --- /dev/null +++ b/doc/controleur/CtrlLogin.html @@ -0,0 +1,256 @@ + + + + + +CtrlLogin + + + + + + + +
+ + + + + +
+ + + +
+
controleur
+

Class CtrlLogin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/controleur/CtrlSaisieMembre.html b/doc/controleur/CtrlSaisieMembre.html new file mode 100644 index 0000000..958aef7 --- /dev/null +++ b/doc/controleur/CtrlSaisieMembre.html @@ -0,0 +1,256 @@ + + + + + +CtrlSaisieMembre + + + + + + + +
+ + + + + +
+ + + +
+
controleur
+

Class CtrlSaisieMembre

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/controleur/TocToac.html b/doc/controleur/TocToac.html new file mode 100644 index 0000000..a2df841 --- /dev/null +++ b/doc/controleur/TocToac.html @@ -0,0 +1,265 @@ + + + + + +TocToac + + + + + + + +
+ + + + + +
+ + + +
+
controleur
+

Class TocToac

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/controleur/class-use/CtrlAccesListe.html b/doc/controleur/class-use/CtrlAccesListe.html new file mode 100644 index 0000000..b429a30 --- /dev/null +++ b/doc/controleur/class-use/CtrlAccesListe.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class controleur.CtrlAccesListe + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
controleur.CtrlAccesListe

+
+
No usage of controleur.CtrlAccesListe
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/class-use/CtrlLogin.html b/doc/controleur/class-use/CtrlLogin.html new file mode 100644 index 0000000..269e0dd --- /dev/null +++ b/doc/controleur/class-use/CtrlLogin.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class controleur.CtrlLogin + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
controleur.CtrlLogin

+
+
No usage of controleur.CtrlLogin
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/class-use/CtrlSaisieMembre.html b/doc/controleur/class-use/CtrlSaisieMembre.html new file mode 100644 index 0000000..a67e312 --- /dev/null +++ b/doc/controleur/class-use/CtrlSaisieMembre.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class controleur.CtrlSaisieMembre + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
controleur.CtrlSaisieMembre

+
+
No usage of controleur.CtrlSaisieMembre
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/class-use/TocToac.html b/doc/controleur/class-use/TocToac.html new file mode 100644 index 0000000..a13e222 --- /dev/null +++ b/doc/controleur/class-use/TocToac.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class controleur.TocToac + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
controleur.TocToac

+
+
No usage of controleur.TocToac
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/package-frame.html b/doc/controleur/package-frame.html new file mode 100644 index 0000000..1ee0fa3 --- /dev/null +++ b/doc/controleur/package-frame.html @@ -0,0 +1,22 @@ + + + + + +controleur + + + + +

controleur

+
+

Classes

+ +
+ + diff --git a/doc/controleur/package-summary.html b/doc/controleur/package-summary.html new file mode 100644 index 0000000..9d9a0a8 --- /dev/null +++ b/doc/controleur/package-summary.html @@ -0,0 +1,145 @@ + + + + + +controleur + + + + + + + +
+ + + + + +
+ + +
+

Package controleur

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/package-tree.html b/doc/controleur/package-tree.html new file mode 100644 index 0000000..fd30502 --- /dev/null +++ b/doc/controleur/package-tree.html @@ -0,0 +1,131 @@ + + + + + +controleur Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package controleur

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/controleur/package-use.html b/doc/controleur/package-use.html new file mode 100644 index 0000000..93516e3 --- /dev/null +++ b/doc/controleur/package-use.html @@ -0,0 +1,115 @@ + + + + + +Uses of Package controleur + + + + + + + +
+ + + + + +
+ + +
+

Uses of Package
controleur

+
+
No usage of controleur
+ +
+ + + + + +
+ + + + diff --git a/doc/deprecated-list.html b/doc/deprecated-list.html new file mode 100644 index 0000000..d26e244 --- /dev/null +++ b/doc/deprecated-list.html @@ -0,0 +1,115 @@ + + + + + +Deprecated List + + + + + + + +
+ + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + +
+ + + + diff --git a/doc/help-doc.html b/doc/help-doc.html new file mode 100644 index 0000000..bd3cb61 --- /dev/null +++ b/doc/help-doc.html @@ -0,0 +1,220 @@ + + + + + +API Help + + + + + + + +
+ + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-1.html b/doc/index-files/index-1.html new file mode 100644 index 0000000..42ec3ff --- /dev/null +++ b/doc/index-files/index-1.html @@ -0,0 +1,138 @@ + + + + + +A-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

A

+
+
AfficherListeMembre - Class in vue
+
 
+
AfficherListeMembre(String) - Constructor for class vue.AfficherListeMembre
+
 
+
AjoutEntraineur - Class in vue
+
 
+
AjoutEntraineur(String, int, int) - Constructor for class vue.AjoutEntraineur
+
 
+
AjoutMembre - Class in vue
+
 
+
AjoutMembre(String, int, int) - Constructor for class vue.AjoutMembre
+
 
+
AjoutMembreBureau - Class in vue
+
 
+
AjoutMembreBureau(String, int, int) - Constructor for class vue.AjoutMembreBureau
+
 
+
AjoutPersonne - Class in vue
+
 
+
AjoutPersonne(String, int, int) - Constructor for class vue.AjoutPersonne
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-10.html b/doc/index-files/index-10.html new file mode 100644 index 0000000..d19ab8e --- /dev/null +++ b/doc/index-files/index-10.html @@ -0,0 +1,126 @@ + + + + + +T-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

T

+
+
test - Class in <Unnamed>
+
 
+
test() - Constructor for class test
+
 
+
TocToac - Class in controleur
+
 
+
TocToac() - Constructor for class controleur.TocToac
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-11.html b/doc/index-files/index-11.html new file mode 100644 index 0000000..cea1544 --- /dev/null +++ b/doc/index-files/index-11.html @@ -0,0 +1,120 @@ + + + + + +V-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

V

+
+
vue - package vue
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-2.html b/doc/index-files/index-2.html new file mode 100644 index 0000000..82c386d --- /dev/null +++ b/doc/index-files/index-2.html @@ -0,0 +1,140 @@ + + + + + +C-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

C

+
+
color_date(int) - Method in class vue.Planning
+
 
+
controleur - package controleur
+
 
+
ctrl() - Method in class controleur.CtrlAccesListe
+
 
+
ctrl() - Method in class controleur.CtrlLogin
+
 
+
ctrl() - Method in class controleur.CtrlSaisieMembre
+
 
+
CtrlAccesListe - Class in controleur
+
 
+
CtrlAccesListe() - Constructor for class controleur.CtrlAccesListe
+
 
+
CtrlLogin - Class in controleur
+
 
+
CtrlLogin() - Constructor for class controleur.CtrlLogin
+
 
+
CtrlSaisieMembre - Class in controleur
+
 
+
CtrlSaisieMembre() - Constructor for class controleur.CtrlSaisieMembre
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-3.html b/doc/index-files/index-3.html new file mode 100644 index 0000000..425c9dd --- /dev/null +++ b/doc/index-files/index-3.html @@ -0,0 +1,128 @@ + + + + + +D-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

D

+
+
Disciplines - Class in modele
+
 
+
Disciplines() - Constructor for class modele.Disciplines
+
 
+
DlgLogin - Class in vue
+
 
+
DlgLogin(String) - Constructor for class vue.DlgLogin
+
 
+
dom - Static variable in class vue.Planning
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-4.html b/doc/index-files/index-4.html new file mode 100644 index 0000000..b2241cf --- /dev/null +++ b/doc/index-files/index-4.html @@ -0,0 +1,122 @@ + + + + + +E-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

E

+
+
Evenements - Class in modele
+
 
+
Evenements() - Constructor for class modele.Evenements
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-5.html b/doc/index-files/index-5.html new file mode 100644 index 0000000..afd97d3 --- /dev/null +++ b/doc/index-files/index-5.html @@ -0,0 +1,140 @@ + + + + + +G-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

G

+
+
getDiscipline(int) - Method in class modele.Disciplines
+
+
permet d'obtenir la discipline pour un entrainement donnée
+
+
getEvenement(int) - Method in class modele.Evenements
+
 
+
getInfo(int) - Method in class modele.Membres
+
+
idMembres les infos du membre ou si -1 alors retourne les infos de tout les membres
+
+
getListeParticipants(int) - Method in class modele.Participer
+
+
retourne une liste de participants (id) pour un evenement (id)
+
+
getListeParticipation(int) - Method in class modele.Participer
+
+
permet d'obtenir une liste d'evenements auquel participe un membre (id)
+
+
getRole(int, int) - Method in class modele.Participer
+
+
permet d'avoir le role d'un membre lors d'un evenement
+
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-6.html b/doc/index-files/index-6.html new file mode 100644 index 0000000..78b97fd --- /dev/null +++ b/doc/index-files/index-6.html @@ -0,0 +1,122 @@ + + + + + +I-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

I

+
+
isLeap(int) - Method in class vue.Planning
+
+
isLeap() returns true if the given year is a Leap Year.
+
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-7.html b/doc/index-files/index-7.html new file mode 100644 index 0000000..45d6a88 --- /dev/null +++ b/doc/index-files/index-7.html @@ -0,0 +1,134 @@ + + + + + +M-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

M

+
+
main(String[]) - Static method in class controleur.TocToac
+
 
+
main(String[]) - Static method in class test
+
 
+
main(String[]) - Static method in class vue.MembreBureau
+
 
+
MembreBureau - Class in vue
+
 
+
MembreBureau(String, int, int) - Constructor for class vue.MembreBureau
+
 
+
Membres - Class in modele
+
 
+
Membres() - Constructor for class modele.Membres
+
 
+
modele - package modele
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-8.html b/doc/index-files/index-8.html new file mode 100644 index 0000000..9b43023 --- /dev/null +++ b/doc/index-files/index-8.html @@ -0,0 +1,132 @@ + + + + + +P-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

P

+
+
Participer - Class in modele
+
 
+
Participer() - Constructor for class modele.Participer
+
 
+
Planning - Class in vue
+
 
+
Planning() - Constructor for class vue.Planning
+
+
Construit un calendrier commencant � la date actuelle
+
+
Planning(int, int, int) - Constructor for class vue.Planning
+
+
Construit un calendrier, en donnant le jour, mois, annee
+
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index-files/index-9.html b/doc/index-files/index-9.html new file mode 100644 index 0000000..e98fd07 --- /dev/null +++ b/doc/index-files/index-9.html @@ -0,0 +1,166 @@ + + + + + +S-Index + + + + + + + +
+ + + + + +
+ + +
A C D E G I M P S T V  + + +

S

+
+
setAnnuler(int, int) - Method in class modele.Participer
+
+
permet de se désincrire un membre d'un evenelement
+
+
setDate(int, int, int) - Method in class vue.Planning
+
+
Set l'ann�e, le mois et le jour
+
+
setDayActive(int) - Method in class vue.Planning
+
 
+
setDiscipline(int, String) - Method in class modele.Disciplines
+
+
permet de saisir une discipline pour un entrainement donné
+
+
setEvenement(String, int, String) - Method in class modele.Evenements
+
+
permet l'ajout d'un evenement
+
+
setInfo(String, String, String, String, String, int, String, String) - Method in class modele.Membres
+
+
Insere dans la base un nouveau membres
+
+
setRole(int, int, int) - Method in class modele.Participer
+
+
permet de saisir le role d'un membre lors d'un evenement
+
+
setTaskDay(int) - Method in class vue.Planning
+
 
+
supprimer(int) - Method in class modele.Membres
+
+
Permet de supprimer un membre a partir de don id
+
+
SupprimerDesk - Class in vue
+
 
+
SupprimerDesk(String, int, int) - Constructor for class vue.SupprimerDesk
+
 
+
SupprimerEntraineur - Class in vue
+
 
+
SupprimerEntraineur(String, int, int) - Constructor for class vue.SupprimerEntraineur
+
 
+
SupprimerMembre - Class in vue
+
 
+
SupprimerMembre(String, int, int) - Constructor for class vue.SupprimerMembre
+
 
+
SupprimerPersonne - Class in vue
+
 
+
SupprimerPersonne(String, int, int) - Constructor for class vue.SupprimerPersonne
+
 
+
+A C D E G I M P S T V 
+ +
+ + + + + +
+ + + + diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..d16403d --- /dev/null +++ b/doc/index.html @@ -0,0 +1,67 @@ + + + + + +Generated Documentation (Untitled) + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/doc/modele/Disciplines.html b/doc/modele/Disciplines.html new file mode 100644 index 0000000..b5f6a43 --- /dev/null +++ b/doc/modele/Disciplines.html @@ -0,0 +1,298 @@ + + + + + +Disciplines + + + + + + + +
+ + + + + +
+ + + +
+
modele
+

Class Disciplines

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/modele/Evenements.html b/doc/modele/Evenements.html new file mode 100644 index 0000000..45a31fc --- /dev/null +++ b/doc/modele/Evenements.html @@ -0,0 +1,297 @@ + + + + + +Evenements + + + + + + + +
+ + + + + +
+ + + +
+
modele
+

Class Evenements

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/modele/Membres.html b/doc/modele/Membres.html new file mode 100644 index 0000000..e4403cd --- /dev/null +++ b/doc/modele/Membres.html @@ -0,0 +1,336 @@ + + + + + +Membres + + + + + + + +
+ + + + + +
+ + + +
+
modele
+

Class Membres

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/modele/Participer.html b/doc/modele/Participer.html new file mode 100644 index 0000000..214b3bc --- /dev/null +++ b/doc/modele/Participer.html @@ -0,0 +1,384 @@ + + + + + +Participer + + + + + + + +
+ + + + + +
+ + + +
+
modele
+

Class Participer

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/modele/class-use/Disciplines.html b/doc/modele/class-use/Disciplines.html new file mode 100644 index 0000000..d1ff556 --- /dev/null +++ b/doc/modele/class-use/Disciplines.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class modele.Disciplines + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
modele.Disciplines

+
+
No usage of modele.Disciplines
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/class-use/Evenements.html b/doc/modele/class-use/Evenements.html new file mode 100644 index 0000000..ffb78e6 --- /dev/null +++ b/doc/modele/class-use/Evenements.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class modele.Evenements + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
modele.Evenements

+
+
No usage of modele.Evenements
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/class-use/Membres.html b/doc/modele/class-use/Membres.html new file mode 100644 index 0000000..2bf7247 --- /dev/null +++ b/doc/modele/class-use/Membres.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class modele.Membres + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
modele.Membres

+
+
No usage of modele.Membres
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/class-use/Participer.html b/doc/modele/class-use/Participer.html new file mode 100644 index 0000000..c59b21c --- /dev/null +++ b/doc/modele/class-use/Participer.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class modele.Participer + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
modele.Participer

+
+
No usage of modele.Participer
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/package-frame.html b/doc/modele/package-frame.html new file mode 100644 index 0000000..b124a70 --- /dev/null +++ b/doc/modele/package-frame.html @@ -0,0 +1,22 @@ + + + + + +modele + + + + +

modele

+
+

Classes

+ +
+ + diff --git a/doc/modele/package-summary.html b/doc/modele/package-summary.html new file mode 100644 index 0000000..e2e1306 --- /dev/null +++ b/doc/modele/package-summary.html @@ -0,0 +1,145 @@ + + + + + +modele + + + + + + + +
+ + + + + +
+ + +
+

Package modele

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/package-tree.html b/doc/modele/package-tree.html new file mode 100644 index 0000000..9b35ec9 --- /dev/null +++ b/doc/modele/package-tree.html @@ -0,0 +1,131 @@ + + + + + +modele Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package modele

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/modele/package-use.html b/doc/modele/package-use.html new file mode 100644 index 0000000..6fc8db8 --- /dev/null +++ b/doc/modele/package-use.html @@ -0,0 +1,115 @@ + + + + + +Uses of Package modele + + + + + + + +
+ + + + + +
+ + +
+

Uses of Package
modele

+
+
No usage of modele
+ +
+ + + + + +
+ + + + diff --git a/doc/overview-frame.html b/doc/overview-frame.html new file mode 100644 index 0000000..3b43756 --- /dev/null +++ b/doc/overview-frame.html @@ -0,0 +1,23 @@ + + + + + +Overview List + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/doc/overview-summary.html b/doc/overview-summary.html new file mode 100644 index 0000000..07ef1c5 --- /dev/null +++ b/doc/overview-summary.html @@ -0,0 +1,134 @@ + + + + + +Overview + + + + + + + +
+ + + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + +
Packages 
PackageDescription
controleur 
modele 
vue 
+
+ +
+ + + + + +
+ + + + diff --git a/doc/overview-tree.html b/doc/overview-tree.html new file mode 100644 index 0000000..04e587e --- /dev/null +++ b/doc/overview-tree.html @@ -0,0 +1,192 @@ + + + + + +Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/package-frame.html b/doc/package-frame.html new file mode 100644 index 0000000..f12fe87 --- /dev/null +++ b/doc/package-frame.html @@ -0,0 +1,19 @@ + + + + + +&lt;Unnamed&gt; + + + + +

<Unnamed>

+
+

Classes

+ +
+ + diff --git a/doc/package-list b/doc/package-list new file mode 100644 index 0000000..851edf1 --- /dev/null +++ b/doc/package-list @@ -0,0 +1,4 @@ + +controleur +modele +vue diff --git a/doc/package-summary.html b/doc/package-summary.html new file mode 100644 index 0000000..105d101 --- /dev/null +++ b/doc/package-summary.html @@ -0,0 +1,126 @@ + + + + + + + + + + + +
+ + + + + +
+ + +
+

Package <Unnamed>

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/package-tree.html b/doc/package-tree.html new file mode 100644 index 0000000..584aae9 --- /dev/null +++ b/doc/package-tree.html @@ -0,0 +1,128 @@ + + + + + + Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package <Unnamed>

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/package-use.html b/doc/package-use.html new file mode 100644 index 0000000..7b2eca6 --- /dev/null +++ b/doc/package-use.html @@ -0,0 +1,115 @@ + + + + + +Uses of Package + + + + + + + +
+ + + + + +
+ + +
+

Uses of Package

+
+
No usage of
+ +
+ + + + + +
+ + + + diff --git a/doc/resources/background.gif b/doc/resources/background.gif new file mode 100644 index 0000000..f471940 Binary files /dev/null and b/doc/resources/background.gif differ diff --git a/doc/resources/tab.gif b/doc/resources/tab.gif new file mode 100644 index 0000000..1a73a83 Binary files /dev/null and b/doc/resources/tab.gif differ diff --git a/doc/resources/titlebar.gif b/doc/resources/titlebar.gif new file mode 100644 index 0000000..17443b3 Binary files /dev/null and b/doc/resources/titlebar.gif differ diff --git a/doc/resources/titlebar_end.gif b/doc/resources/titlebar_end.gif new file mode 100644 index 0000000..3ad78d4 Binary files /dev/null and b/doc/resources/titlebar_end.gif differ diff --git a/doc/serialized-form.html b/doc/serialized-form.html new file mode 100644 index 0000000..91ca470 --- /dev/null +++ b/doc/serialized-form.html @@ -0,0 +1,623 @@ + + + + + +Serialized Form + + + + + + + +
+ + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/stylesheet.css b/doc/stylesheet.css new file mode 100644 index 0000000..0e0d70c --- /dev/null +++ b/doc/stylesheet.css @@ -0,0 +1,474 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ +body { + background-color:#ffffff; + color:#353833; + font-family:Arial, Helvetica, sans-serif; + font-size:76%; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4c6b87; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4c6b87; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-size:1.3em; +} +h1 { + font-size:1.8em; +} +h2 { + font-size:1.5em; +} +h3 { + font-size:1.4em; +} +h4 { + font-size:1.3em; +} +h5 { + font-size:1.2em; +} +h6 { + font-size:1.1em; +} +ul { + list-style-type:disc; +} +code, tt { + font-size:1.2em; +} +dt code { + font-size:1.2em; +} +table tr td dt code { + font-size:1.2em; + vertical-align:top; +} +sup { + font-size:.6em; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:.8em; + z-index:200; + margin-top:-7px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + background-image:url(resources/titlebar.gif); + background-position:left top; + background-repeat:no-repeat; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-image:url(resources/background.gif); + background-repeat:repeat-x; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:1em; + margin:0; +} +.topNav { + background-image:url(resources/background.gif); + background-repeat:repeat-x; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; +} +.bottomNav { + margin-top:10px; + background-image:url(resources/background.gif); + background-repeat:repeat-x; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; +} +.subNav { + background-color:#dee3e9; + border-bottom:1px solid #9eadc0; + float:left; + width:100%; + overflow:hidden; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding:3px 6px; +} +ul.subNavList li{ + list-style:none; + float:left; + font-size:90%; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; +} +.navBarCell1Rev { + background-image:url(resources/tab.gif); + background-color:#a88834; + color:#FFFFFF; + margin: auto 5px; + border:1px solid #c9aa44; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader h1 { + font-size:1.3em; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 25px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:1.2em; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border-top:1px solid #9eadc0; + border-bottom:1px solid #9eadc0; + margin:0 0 6px -8px; + padding:2px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border-top:1px solid #9eadc0; + border-bottom:1px solid #9eadc0; + margin:0 0 6px -8px; + padding:2px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:1.0em; +} +.indexContainer h2 { + font-size:1.1em; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:1.1em; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:10px 0 10px 20px; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:25px; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #9eadc0; + background-color:#f9f9f9; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:1px solid #9eadc0; + border-top:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; + border-bottom:1px solid #9eadc0; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.contentContainer table, .classUseContainer table, .constantValuesContainer table { + border-bottom:1px solid #9eadc0; + width:100%; +} +.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { + width:100%; +} +.contentContainer .description table, .contentContainer .details table { + border-bottom:none; +} +.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{ + vertical-align:top; + padding-right:20px; +} +.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast, +.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast, +.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, +.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { + padding-right:3px; +} +.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#FFFFFF; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + margin:0px; +} +caption a:link, caption a:hover, caption a:active, caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { + white-space:nowrap; + padding-top:8px; + padding-left:8px; + display:block; + float:left; + background-image:url(resources/titlebar.gif); + height:18px; +} +.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { + width:10px; + background-image:url(resources/titlebar_end.gif); + background-repeat:no-repeat; + background-position:top right; + position:relative; + float:left; +} +ul.blockList ul.blockList li.blockList table { + margin:0 0 12px 0px; + width:100%; +} +.tableSubHeadingColor { + background-color: #EEEEFF; +} +.altColor { + background-color:#eeeeef; +} +.rowColor { + background-color:#ffffff; +} +.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { + text-align:left; + padding:3px 3px 3px 7px; +} +th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { + background:#dee3e9; + border-top:1px solid #9eadc0; + border-bottom:1px solid #9eadc0; + text-align:left; + padding:3px 3px 3px 7px; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +td.colFirst, th.colFirst { + border-left:1px solid #9eadc0; + white-space:nowrap; +} +td.colLast, th.colLast { + border-right:1px solid #9eadc0; +} +td.colOne, th.colOne { + border-right:1px solid #9eadc0; + border-left:1px solid #9eadc0; +} +table.overviewSummary { + padding:0px; + margin-left:0px; +} +table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, +table.overviewSummary td.colOne, table.overviewSummary th.colOne { + width:25%; + vertical-align:middle; +} +table.packageSummary td.colFirst, table.overviewSummary th.colFirst { + width:25%; + vertical-align:middle; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:.9em; +} +.block { + display:block; + margin:3px 0 0 0; +} +.strong { + font-weight:bold; +} diff --git a/doc/test.html b/doc/test.html new file mode 100644 index 0000000..1fe355a --- /dev/null +++ b/doc/test.html @@ -0,0 +1,264 @@ + + + + + +test + + + + + + + +
+ + + + + +
+ + + +
+

Class test

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/AfficherListeMembre.html b/doc/vue/AfficherListeMembre.html new file mode 100644 index 0000000..3408fa7 --- /dev/null +++ b/doc/vue/AfficherListeMembre.html @@ -0,0 +1,365 @@ + + + + + +AfficherListeMembre + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class AfficherListeMembre

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/AjoutEntraineur.html b/doc/vue/AjoutEntraineur.html new file mode 100644 index 0000000..b3156cf --- /dev/null +++ b/doc/vue/AjoutEntraineur.html @@ -0,0 +1,367 @@ + + + + + +AjoutEntraineur + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class AjoutEntraineur

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/AjoutMembre.html b/doc/vue/AjoutMembre.html new file mode 100644 index 0000000..9158e03 --- /dev/null +++ b/doc/vue/AjoutMembre.html @@ -0,0 +1,367 @@ + + + + + +AjoutMembre + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class AjoutMembre

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/AjoutMembreBureau.html b/doc/vue/AjoutMembreBureau.html new file mode 100644 index 0000000..ffffe6b --- /dev/null +++ b/doc/vue/AjoutMembreBureau.html @@ -0,0 +1,367 @@ + + + + + +AjoutMembreBureau + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class AjoutMembreBureau

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/AjoutPersonne.html b/doc/vue/AjoutPersonne.html new file mode 100644 index 0000000..f2f1465 --- /dev/null +++ b/doc/vue/AjoutPersonne.html @@ -0,0 +1,366 @@ + + + + + +AjoutPersonne + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class AjoutPersonne

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/DlgLogin.html b/doc/vue/DlgLogin.html new file mode 100644 index 0000000..0bb8e54 --- /dev/null +++ b/doc/vue/DlgLogin.html @@ -0,0 +1,365 @@ + + + + + +DlgLogin + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class DlgLogin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/MembreBureau.html b/doc/vue/MembreBureau.html new file mode 100644 index 0000000..ca7ff05 --- /dev/null +++ b/doc/vue/MembreBureau.html @@ -0,0 +1,390 @@ + + + + + +MembreBureau + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class MembreBureau

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/Planning.html b/doc/vue/Planning.html new file mode 100644 index 0000000..c6459f9 --- /dev/null +++ b/doc/vue/Planning.html @@ -0,0 +1,478 @@ + + + + + +Planning + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class Planning

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/SupprimerDesk.html b/doc/vue/SupprimerDesk.html new file mode 100644 index 0000000..9329301 --- /dev/null +++ b/doc/vue/SupprimerDesk.html @@ -0,0 +1,367 @@ + + + + + +SupprimerDesk + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class SupprimerDesk

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/SupprimerEntraineur.html b/doc/vue/SupprimerEntraineur.html new file mode 100644 index 0000000..ebeafa5 --- /dev/null +++ b/doc/vue/SupprimerEntraineur.html @@ -0,0 +1,367 @@ + + + + + +SupprimerEntraineur + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class SupprimerEntraineur

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/SupprimerMembre.html b/doc/vue/SupprimerMembre.html new file mode 100644 index 0000000..44200f4 --- /dev/null +++ b/doc/vue/SupprimerMembre.html @@ -0,0 +1,367 @@ + + + + + +SupprimerMembre + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class SupprimerMembre

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/SupprimerPersonne.html b/doc/vue/SupprimerPersonne.html new file mode 100644 index 0000000..d47b71c --- /dev/null +++ b/doc/vue/SupprimerPersonne.html @@ -0,0 +1,366 @@ + + + + + +SupprimerPersonne + + + + + + + +
+ + + + + +
+ + + +
+
vue
+

Class SupprimerPersonne

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/AfficherListeMembre.html b/doc/vue/class-use/AfficherListeMembre.html new file mode 100644 index 0000000..eec783a --- /dev/null +++ b/doc/vue/class-use/AfficherListeMembre.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.AfficherListeMembre + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.AfficherListeMembre

+
+
No usage of vue.AfficherListeMembre
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/AjoutEntraineur.html b/doc/vue/class-use/AjoutEntraineur.html new file mode 100644 index 0000000..f2c7c3d --- /dev/null +++ b/doc/vue/class-use/AjoutEntraineur.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.AjoutEntraineur + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.AjoutEntraineur

+
+
No usage of vue.AjoutEntraineur
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/AjoutMembre.html b/doc/vue/class-use/AjoutMembre.html new file mode 100644 index 0000000..ffa1d55 --- /dev/null +++ b/doc/vue/class-use/AjoutMembre.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.AjoutMembre + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.AjoutMembre

+
+
No usage of vue.AjoutMembre
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/AjoutMembreBureau.html b/doc/vue/class-use/AjoutMembreBureau.html new file mode 100644 index 0000000..63665b5 --- /dev/null +++ b/doc/vue/class-use/AjoutMembreBureau.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.AjoutMembreBureau + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.AjoutMembreBureau

+
+
No usage of vue.AjoutMembreBureau
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/AjoutPersonne.html b/doc/vue/class-use/AjoutPersonne.html new file mode 100644 index 0000000..4e61168 --- /dev/null +++ b/doc/vue/class-use/AjoutPersonne.html @@ -0,0 +1,163 @@ + + + + + +Uses of Class vue.AjoutPersonne + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.AjoutPersonne

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/DlgLogin.html b/doc/vue/class-use/DlgLogin.html new file mode 100644 index 0000000..3b4c738 --- /dev/null +++ b/doc/vue/class-use/DlgLogin.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.DlgLogin + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.DlgLogin

+
+
No usage of vue.DlgLogin
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/MembreBureau.html b/doc/vue/class-use/MembreBureau.html new file mode 100644 index 0000000..f4794aa --- /dev/null +++ b/doc/vue/class-use/MembreBureau.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.MembreBureau + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.MembreBureau

+
+
No usage of vue.MembreBureau
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/Planning.html b/doc/vue/class-use/Planning.html new file mode 100644 index 0000000..1d7a064 --- /dev/null +++ b/doc/vue/class-use/Planning.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.Planning + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.Planning

+
+
No usage of vue.Planning
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/SupprimerDesk.html b/doc/vue/class-use/SupprimerDesk.html new file mode 100644 index 0000000..660c6d3 --- /dev/null +++ b/doc/vue/class-use/SupprimerDesk.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.SupprimerDesk + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.SupprimerDesk

+
+
No usage of vue.SupprimerDesk
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/SupprimerEntraineur.html b/doc/vue/class-use/SupprimerEntraineur.html new file mode 100644 index 0000000..453785e --- /dev/null +++ b/doc/vue/class-use/SupprimerEntraineur.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.SupprimerEntraineur + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.SupprimerEntraineur

+
+
No usage of vue.SupprimerEntraineur
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/SupprimerMembre.html b/doc/vue/class-use/SupprimerMembre.html new file mode 100644 index 0000000..a4f20bd --- /dev/null +++ b/doc/vue/class-use/SupprimerMembre.html @@ -0,0 +1,115 @@ + + + + + +Uses of Class vue.SupprimerMembre + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.SupprimerMembre

+
+
No usage of vue.SupprimerMembre
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/class-use/SupprimerPersonne.html b/doc/vue/class-use/SupprimerPersonne.html new file mode 100644 index 0000000..f57c902 --- /dev/null +++ b/doc/vue/class-use/SupprimerPersonne.html @@ -0,0 +1,163 @@ + + + + + +Uses of Class vue.SupprimerPersonne + + + + + + + +
+ + + + + +
+ + +
+

Uses of Class
vue.SupprimerPersonne

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/package-frame.html b/doc/vue/package-frame.html new file mode 100644 index 0000000..78d8689 --- /dev/null +++ b/doc/vue/package-frame.html @@ -0,0 +1,30 @@ + + + + + +vue + + + + +

vue

+
+

Classes

+ +
+ + diff --git a/doc/vue/package-summary.html b/doc/vue/package-summary.html new file mode 100644 index 0000000..04b735a --- /dev/null +++ b/doc/vue/package-summary.html @@ -0,0 +1,177 @@ + + + + + +vue + + + + + + + +
+ + + + + +
+ + +
+

Package vue

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/package-tree.html b/doc/vue/package-tree.html new file mode 100644 index 0000000..301b053 --- /dev/null +++ b/doc/vue/package-tree.html @@ -0,0 +1,181 @@ + + + + + +vue Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package vue

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/doc/vue/package-use.html b/doc/vue/package-use.html new file mode 100644 index 0000000..e927269 --- /dev/null +++ b/doc/vue/package-use.html @@ -0,0 +1,151 @@ + + + + + +Uses of Package vue + + + + + + + +
+ + + + + +
+ + +
+

Uses of Package
vue

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/src/controleur/CtrlAccesListe.java b/src/controleur/CtrlAccesListe.java index be29322..eabae58 100644 --- a/src/controleur/CtrlAccesListe.java +++ b/src/controleur/CtrlAccesListe.java @@ -5,8 +5,6 @@ import java.sql.ResultSet; import java.sql.SQLException; import javax.swing.JFrame; - -import vue.AfficherListeMembre; import vue.Planning; import modele.Evenements; @@ -29,12 +27,8 @@ public class CtrlAccesListe { Container c = f_planning.getContentPane(); c.setLayout(new FlowLayout()); - // cr�e le planning � la date actuelle + // cree le planning � la date actuelle c.add(p); - /* - // c.add(new Planning(2012, 4, 20)) ; - p.color_date(11) ; - p.color_date(20) ;*/ f_planning.pack(); // f_planning.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); @@ -42,7 +36,7 @@ public class CtrlAccesListe { f_planning.setResizable(false) ; - //ajout d'un evenemebts test + //ajout d'un evenement test e = new Evenements(); e.setEvenement("2012-11-20", 1, "toulouse"); diff --git a/src/controleur/CtrlLogin.java b/src/controleur/CtrlLogin.java index 01e06bf..f8470d0 100644 --- a/src/controleur/CtrlLogin.java +++ b/src/controleur/CtrlLogin.java @@ -1,12 +1,15 @@ package controleur; +import vue.DlgLogin; + public class CtrlLogin { - //attributs - //Constructeurs - public CtrlLogin (){}; + public void ctrl () { - //méthodes + DlgLogin fen = new DlgLogin("S'identifier"); + fen.setBounds(500, 250, 500, 150) ; + fen.setVisible(true); + } ; } diff --git a/src/controleur/CtrlSaisieMembre.java b/src/controleur/CtrlSaisieMembre.java index ea436d3..9d5fa55 100644 --- a/src/controleur/CtrlSaisieMembre.java +++ b/src/controleur/CtrlSaisieMembre.java @@ -1,6 +1,5 @@ package controleur; -import vue.AfficherListeMembre; import vue.AjoutPersonne; public class CtrlSaisieMembre { diff --git a/src/controleur/TocToac.java b/src/controleur/TocToac.java index 9d75088..b65336e 100644 --- a/src/controleur/TocToac.java +++ b/src/controleur/TocToac.java @@ -5,12 +5,15 @@ import java.sql.SQLException; public class TocToac { public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { + CtrlLogin log = new CtrlLogin(); + log.ctrl() ; + CtrlAccesListe l = new CtrlAccesListe(); l.ctrl(); CtrlSaisieMembre m = new CtrlSaisieMembre(); m.ctrl(); - + } } diff --git a/src/vue/DlgLogin.java b/src/vue/DlgLogin.java new file mode 100644 index 0000000..7415ac6 --- /dev/null +++ b/src/vue/DlgLogin.java @@ -0,0 +1,75 @@ +package vue; + + +import java.awt.BorderLayout; +import java.awt.GridLayout; +import javax.swing.JButton; +import javax.swing.JFrame; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JPasswordField; +import javax.swing.JTextField; + + +public class DlgLogin extends JFrame +{ + // Attributs pour les compsants de la fenêtre + + int x, y, h, l ; + private JLabel l_title, l_login, l_mdp ; + private JTextField t_login ; + private JPanel pan_0, pan_1, pan_2 ; + private JButton b_valider, b_annuler ; + private JPasswordField p_mdp ; + + public DlgLogin (String title) + { + super(title); + + // Définir la fenêtre elle-même + + this.setBounds (x, y, l, h); + this.setResizable(false); + this.setTitle(title) ; + //this.setDefaultCloseOperation(EXIT_ON_CLOSE) ; + + + // Créer des composants et les insérer dans la fenêtre + + + this.l_title = new JLabel(" Identifiez-vous !

") ; + this.l_login = new JLabel("Login : ") ; + this.l_mdp = new JLabel("Mot de passe : ") ; + this.t_login = new JTextField(50) ; + this.p_mdp = new JPasswordField(50) ; + this.b_valider = new JButton("Valider") ; + this.b_annuler = new JButton("Annuler") ; + + this.pan_0 = new JPanel() ; + this.pan_1 = new JPanel() ; + this.pan_2 = new JPanel() ; + + + // Mise en place des composants + + pan_0.add(l_title) ; + + this.add(pan_0, BorderLayout.NORTH) ; + + pan_1.setLayout(new GridLayout(2, 2)); + pan_1.add(l_login); + pan_1.add(t_login) ; + pan_1.add(l_mdp) ; + pan_1.add(p_mdp) ; + + this.add(pan_1) ; + + pan_2.setLayout(new GridLayout(1,2)) ; + pan_2.add(b_valider) ; + pan_2.add(b_annuler) ; + + this.add(pan_2, BorderLayout.SOUTH) ; + } + + +} diff --git a/src/vue/Planning.java b/src/vue/Planning.java index 03462e1..a7a8e50 100644 --- a/src/vue/Planning.java +++ b/src/vue/Planning.java @@ -54,7 +54,7 @@ public class Planning extends JPanel { } /** - * Construit un calendrier, en donnant le jour, mois, ann�e + * Construit un calendrier, en donnant le jour, mois, annee * * @exception IllegalArgumentException * Si l'ann�e n'est pas correcte @@ -73,13 +73,13 @@ public class Planning extends JPanel { dd = today; } - String[] months = { "Janvier", "F�vrier", "Mars", "Avril", "Mai", "Juin", - "Juillet", "Ao�t", "Septembre", "Octobre", "Novembre", "D�cembre" }; + String[] months = { "Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", + "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Decembre" }; private String buildGUI() { getAccessibleContext().setAccessibleDescription( - "Calendrier non disponible, d�sol�"); + "Calendrier non disponible, desole"); setBorder(BorderFactory.createEtchedBorder()); setLayout(new BorderLayout()); @@ -201,7 +201,7 @@ public class Planning extends JPanel { if (thisYear == yy && mm == thisMonth) setDayActive(dd); - // Recharge l'�cran + // Recharge l'ecran repaint(); } @@ -268,10 +268,10 @@ public class Planning extends JPanel { private void print_button() { - // rajouter bouton inscrire / d�sinscrire, si jour dispo ou non + // rajouter bouton inscrire / desinscrire, si jour dispo ou non this.b_inscrire = new JButton("S'inscrire") ; - this.b_desinscrire = new JButton("Se d�sinscrire") ; + this.b_desinscrire = new JButton("Se desinscrire") ; b_inscrire.setEnabled(true) ; b_desinscrire.setEnabled(false) ;