diff --git a/java/Makefile b/java/APIGroupe/Makefile similarity index 90% rename from java/Makefile rename to java/APIGroupe/Makefile index ca8bb68..30f58f2 100644 --- a/java/Makefile +++ b/java/APIGroupe/Makefile @@ -86,6 +86,11 @@ ${BUILD}/MNP/AbstractGroupeFactoryNP.class : ${SRC}/MNP/AbstractGroupeFactoryNP. ${BUILD}/API/AbstractGroupeFactory.class ${JAVAC} ${JAVAC_OPTIONS} ${SRC}/MNP/AbstractGroupeFactoryNP.java +${BUILD}/MNP/AbstractChangementFactoryNP.class : ${SRC}/MNP/AbstractChangementFactoryNP.java \ + ${BUILD}/API/AbstractChangementFactory.class \ + ${BUILD}/API/Changement.class + ${JAVAC} ${JAVAC_OPTIONS} ${SRC}/MNP/AbstractChangementFactoryNP.java + ###... @@ -95,7 +100,8 @@ ${BUILD}/MNP/AbstractGroupeFactoryNP.class : ${SRC}/MNP/AbstractGroupeFactoryNP. ${BUILD}/MNP/EtudiantNP.class \ ${BUILD}/MNP/GroupeNP.class \ ${BUILD}/MNP/ChangementNP.class \ - ${BUILD}/MNP/AbstractGroupeFactoryNP.class + ${BUILD}/MNP/AbstractGroupeFactoryNP.class \ + ${BUILD}/MNP/AbstractChangementFactoryNP.class ${JAVAC} -Xlint:deprecation ${JAVAC_OPTIONS} ${SRC}/Test/TestTexteMNP.java # ## JARS ## diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java similarity index 67% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java index 9c2c6b4..4acea36 100644 --- a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java @@ -10,16 +10,27 @@ public interface AbstractChangementFactory { /** * permet de récupérer une usine abstraite pour les groupes qui fonctionne en tandem avec cette usine abstraite - * @return cette usine abstraite + * @return cette usine abstraite pour les groupes */ public AbstractGroupeFactory getGroupeFactory(); /** * permet de récupérer les changements - * @return tous les changements en attente + * @return l'ensemble de tous les changements en attente + * + * NB. Attention. C'était Iterator dans la version beta. */ - public Iterator getAllChangements(); + public Set getAllChangements(); + /** + * permet de mettre en oeuvre un changement connu de l'usine abstraite. + * En cas de succès, le changement est oublié (détruit). + * + * @throws java.lang.NullPointerException si un argument est null + * @throws java.lang.IllegalArgumentException si inconnu de l'usine abstraite + */ + public void applyChangement(Changement c); + /** * permet de supprimer un changement connu de l'usine abstraite. * diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java similarity index 93% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java index 946dff7..63dc788 100644 --- a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java @@ -13,6 +13,15 @@ public interface AbstractGroupeFactory { */ public Groupe getPromotion(); + + /** + * Test si le groupe g est connu de l'usine (connu maintenant). + * Si la réponse est true, les méthodes avec ce groupe en paramètre devraient bien fonctionner. + * Si la réponse est false, le comportement n'est pas garanti. + */ + public Boolean knows(Groupe g); + + /** * permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes. * Pour détruire un groupe connu qui en contient d'autres il faut le faire récursivement. diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java similarity index 98% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java index 1b0d88d..9b8bab4 100644 --- a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java @@ -42,7 +42,7 @@ public interface Changement extends MonPrint { */ public default String monPrint() { StringBuilder sb = new StringBuilder(); - sb.append("Changement de " + this.getEtu().monPrint() + " depuis le groupe " + this.getA().getName() + " vers le groupe " + this.getA().getName()); + sb.append("Changement de " + this.getEtu().monPrint() + " depuis le groupe " + this.getA().getName() + " vers le groupe " + this.getB().getName()); return sb.toString(); } diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Changement.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java similarity index 98% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java index cb397fa..0d24d4b 100644 --- a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java @@ -110,7 +110,7 @@ public interface Groupe extends MonPrint { sb.append("\t _ "+ s.monPrint()); sb.append("\n"); } - sb.append(" ** Sous Groupess **\n"); + sb.append(" ** Sous Groupes **\n"); for (Groupe g: getSousGroupes()){ sb.append("\t _ "+ g.getName() + " (" + g.getType() + ", capacité " + g.getMin() + " à " + g.getMax() +", id " + g.getId()+")"); sb.append("\n"); diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/Groupe.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.java~ diff --git a/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractChangementFactoryNP.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractChangementFactoryNP.java new file mode 100644 index 0000000..a586c32 --- /dev/null +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractChangementFactoryNP.java @@ -0,0 +1,104 @@ +package fr.iutfbleau.projetIHM2022FI2.MNP; +import fr.iutfbleau.projetIHM2022FI2.API.*; +import java.util.*; +/** + * Usine abstraite gérant l'ensemble des changements. + * + */ + +public class AbstractChangementFactoryNP implements AbstractChangementFactory { + + // l'usine à groupe travaillant en tandem avec cette usine. + private AbstractGroupeFactory agf; + + // On utilise une table de hachage pour retrouver facilement un changement (à partir de son id). + // Si il y a beaucoup de changements c'est plus rapide que de parcourir toute une liste. + private HashMap brain; + + public AbstractChangementFactoryNP(AbstractGroupeFactory agf){ + Objects.requireNonNull(agf,"On ne peut pas créer une usine à changement dont l'usine à groupe parternaire est null"); + this.agf=agf; + this.brain=new HashMap(); + } + + + /** + * permet de récupérer l'usine abstraite pour les groupes qui fonctionne en tandem avec cette usine abstraite + * @return cette usine abstraite pour les groupes + */ + public AbstractGroupeFactory getGroupeFactory(){ + return this.agf; + } + + /** + * permet de récupérer les changements + * @return l'ensemble de tous les changements en attente + */ + public Set getAllChangements(){ + // la méthode value() d'un hashmap retourne la collection des valeurs. + // Il faut transformer la collection en Set. + // Un constructeur de HashSet permet de faire cette opération. + Set out = new HashSet(this.brain.values()); + return out; + } + + /** + * permet de mettre en oeuvre un changement connu de l'usine abstraite. + * + * @throws java.lang.NullPointerException si un argument est null + * @throws java.lang.IllegalStateException si le changement n'a pas de sens en l'état actuel (e.g. étudiant pas dans le groupe de départ a, groupe b inconnu, groupe a inconnu, etc). + * @throws java.lang.IllegalArgumentException si inconnu de l'usine abstraite + */ + public void applyChangement(Changement c){ + Objects.requireNonNull(c,"On ne peut pas appliquer un changement qui est null"); + Etudiant e = c.getEtu(); + Groupe a = c.getA(); + Groupe b = c.getB(); + + if (!agf.knows(a)) throw new IllegalStateException("Le groupe de départ du changement est inconnu. Impossible à mettre en oeuvre."); + + if (!agf.knows(b)) throw new IllegalStateException("Le groupe d'arrivée du changement est inconnu. Impossible à mettre en oeuvre."); + // pas encore implanté. + // if(!agf.getGroupesOfEtudiant(e).contains(a)) throw new IllegalStateException("Le groupe de départ ne contient pas l'étudiant. Impossible à mettre en oeuvre."); + + agf.dropFromGroupe(a,e); + agf.addToGroupe(b,e); + // En cas de succès, on enlève le changement du cerveau + this.brain.remove(Integer.valueOf(c.getId())); + } + + + /** + * permet de supprimer un changement connu de l'usine abstraite. + * + * @throws java.lang.NullPointerException si un argument est null + * @throws java.lang.IllegalArgumentException si inconnu de l'usine abstraite + */ + public void deleteChangement(Changement c){ + Objects.requireNonNull(c,"On ne peut pas demander la suppression d'un changement qui est null"); + + this.brain.remove(Integer.valueOf(c.getId())); + + } + + /** + * permet d'ajouter un nouveau changement. + * + * @param A groupe actuel + * @param B groupe demandé + * @param e étudiant concerné par le changement + * + * @throws java.lang.NullPointerException si un argument est null + * @throws java.lang.IllegalArgumentException si les groupes ou l'étudiant ne sont pas connus de la factory partenaire, ou e n'appartient pas à A ou A et B ne sont pas frères dans l'arbre des groupes. + * + */ + public void createChangement(Groupe A, Etudiant e, Groupe B){ + Objects.requireNonNull(A,"Le groupe d'origine ne peut pas être null"); + Objects.requireNonNull(B,"Le groupe d'arrivée ne peut pas être null"); + Objects.requireNonNull(e,"L'étudiant ne peut pas être null"); + + Changement c = new ChangementNP(A,e,B); + this.brain.put(Integer.valueOf(c.getId()),c); + } + +} diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupFactoryNP.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupFactoryNP.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupFactoryNP.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupFactoryNP.java~ diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java similarity index 91% rename from java/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java index c86a834..4f3264e 100644 --- a/java/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java +++ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.java @@ -28,20 +28,11 @@ public class AbstractGroupeFactoryNP implements AbstractGroupeFactory { this.brain=new HashMap(); this.brain.put(Integer.valueOf(this.promo.getId()),this.promo); } - - - - - - - - - /** - * Test pltôt optimiste. Si la clé est identique alors on fait comme si c'était le bon groupe. + * Test plutôt optimiste. Si la clé est identique alors on fait comme si c'était le bon groupe. */ - private Boolean knows(Groupe g){ + public Boolean knows(Groupe g){ return this.brain.containsKey(Integer.valueOf(g.getId())); } @@ -140,13 +131,20 @@ public class AbstractGroupeFactoryNP implements AbstractGroupeFactory { // création des sous-groupes int min = 0; int max = ((int) Math.floor(pere.getSize()/n))+1; + List groupes = new ArrayList(n); for(int i = 0; i itgr = racineDeLaPartition.getSousGroupes().iterator(); + Groupe A = itgr.next(); // premier sous-groupe + Groupe B = itgr.next(); // second sous-groupe + B = itgr.next(); // troisième sous-groupe + Etudiant e = A.getEtudiants().iterator().next();// premier étudiant du premier sous-groupe. + acf.createChangement(A,e,B); + System.out.println("Récupération des changements (en fait un seul pour l'instant)"); + Iterator itch = acf.getAllChangements().iterator(); + Changement c = itch.next(); + System.out.println(c.monPrint()); + System.out.println("Application du changement"); + acf.applyChangement(c); + System.out.println("=========================="); + System.out.println("== nouveau contenu des groupes de la partition "); + for(Groupe g : racineDeLaPartition.getSousGroupes()){ + System.out.println(g.monPrint()); + } + + System.out.println("=========================="); + System.out.println("Création de 2 changements"); + itgr = racineDeLaPartition.getSousGroupes().iterator(); + A = itgr.next(); // premier sous-groupe + B = itgr.next(); // second sous-groupe + Etudiant etu1 = A.getEtudiants().iterator().next();// premier étudiant du premier sous-groupe. + Etudiant etu2 = B.getEtudiants().iterator().next();// premier étudiant du premier sous-groupe. + acf.createChangement(A,etu1,B); + acf.createChangement(B,etu2,A); + // Impression des changements. + for (Changement cgt : acf.getAllChangements()){ + System.out.println(cgt.monPrint()); + } + itch = acf.getAllChangements().iterator(); + c = itch.next(); + System.out.println("Suppression d'un changement. Il reste :"); + acf.deleteChangement(itch.next()); + for (Changement cgt : acf.getAllChangements()){ + System.out.println(cgt.monPrint()); + } } diff --git a/java/src/fr/iutfbleau/projetIHM2022FI2/Test/TestTexteMNP.java~ b/java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/Test/TestTexteMNP.java~ similarity index 100% rename from java/src/fr/iutfbleau/projetIHM2022FI2/Test/TestTexteMNP.java~ rename to java/APIGroupe/src/fr/iutfbleau/projetIHM2022FI2/Test/TestTexteMNP.java~ diff --git a/java/LICENSE b/java/LICENSE deleted file mode 100644 index 44d7b76..0000000 --- a/java/LICENSE +++ /dev/null @@ -1,493 +0,0 @@ -CeCILL FREE SOFTWARE LICENSE AGREEMENT - -Version 2.1 dated 2013-06-21 Notice - -This Agreement is a Free Software license agreement that is the result of -discussions between its authors in order to ensure compliance with the two -main principles guiding its drafting: - -* firstly, compliance with the principles governing the distribution of Free -Software: access to source code, broad rights granted to users, - -* secondly, the election of a governing law, French law, with which it is -conformant, both as regards the law of torts and intellectual property law, -and the protection that it offers to both authors and holders of the economic -rights over software. - -The authors of the CeCILL¹ license are: - - - -Commissariat à l'énergie atomique et aux énergies alternatives - CEA, a public -scientific, technical and industrial research establishment, having its principal -place of business at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France. - - - -Centre National de la Recherche Scientifique - CNRS, a public scientific and -technological establishment, having its principal place of business at 3 rue -Michel-Ange, 75794 Paris cedex 16, France. - - - -Institut National de Recherche en Informatique et en Automatique - Inria, -a public scientific and technological establishment, having its principal -place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay -cedex, France. - -Preamble The purpose of this Free Software license agreement is to grant users -the right to modify and redistribute the software governed by this license -within the framework of an open source distribution model. - -The exercising of this right is conditional upon certain obligations for users -so as to preserve this status for all subsequent redistributions. - -In consideration of access to the source code and the rights to copy, modify -and redistribute granted by the license, users are provided only with a limited -warranty and the software's author, the holder of the economic rights, and -the successive licensors only have limited liability. - -In this respect, the risks associated with loading, using, modifying and/or -developing or reproducing the software by the user are brought to the user's -attention, given its Free Software status, which may make it complicated to -use, with the result that its use is reserved for developers and experienced -professionals having in-depth computer knowledge. Users are therefore encouraged -to load and test the suitability of the software as regards their requirements -in conditions enabling the security of their systems and/or data to be ensured -and, more generally, to use and operate it in the same conditions of security. -This Agreement may be freely reproduced and published, provided it is not -altered, and that no provisions are either added or removed herefrom. - -This Agreement may apply to any or all software for which the holder of the -economic rights decides to submit the use thereof to its provisions. - -Frequently asked questions can be found on the official website of the CeCILL -licenses family (http://www.cecill.info/index.en.html) for any necessary clarification. - - Article 1 - DEFINITIONS - -For the purpose of this Agreement, when the following expressions commence -with a capital letter, they shall have the following meaning: - - - -Agreement: means this license agreement, and its possible subsequent versions -and annexes. - - - -Software: means the software in its Object Code and/or Source Code form and, -where applicable, its documentation, "as is" when the Licensee accepts the -Agreement. - - - -Initial Software: means the Software in its Source Code and possibly its Object -Code form and, where applicable, its documentation, "as is" when it is first -distributed under the terms and conditions of the Agreement. - - - -Modified Software: means the Software modified by at least one Contribution. - - - -Source Code: means all the Software's instructions and program lines to which -access is required so as to modify the Software. - - - -Object Code: means the binary files originating from the compilation of the -Source Code. - - - -Holder: means the holder(s) of the economic rights over the Initial Software. - - - - Licensee: means the Software user(s) having accepted the Agreement. - - - - Contributor: means a Licensee having made at least one Contribution. - - - -Licensor: means the Holder, or any other individual or legal entity, who distributes -the Software under the Agreement. - - - -Contribution: means any or all modifications, corrections, translations, adaptations -and/or new functions integrated into the Software by any or all Contributors, -as well as any or all Internal Modules. - - - -Module: means a set of sources files including their documentation that enables -supplementary functions or services in addition to those offered by the Software. - - - -External Module: means any or all Modules, not derived from the Software, -so that this Module and the Software run in separate address spaces, with -one calling the other when they are run. - - - -Internal Module: means any or all Module, connected to the Software so that -they both execute in the same address space. - - - -GNU GPL: means the GNU General Public License version 2 or any subsequent -version, as published by the Free Software Foundation Inc. - - - -GNU Affero GPL: means the GNU Affero General Public License version 3 or any -subsequent version, as published by the Free Software Foundation Inc. - - - -EUPL: means the European Union Public License version 1.1 or any subsequent -version, as published by the European Commission. - - - - Parties: mean both the Licensee and the Licensor. - - These expressions may be used both in singular and plural form. - - Article 2 - PURPOSE - -The purpose of the Agreement is the grant by the Licensor to the Licensee -of a non-exclusive, transferable and worldwide license for the Software as -set forth in Article 5 <#scope> hereinafter for the whole term of the protection -granted by the rights over said Software. - - Article 3 - ACCEPTANCE - -3.1 The Licensee shall be deemed as having accepted the terms and conditions -of this Agreement upon the occurrence of the first of the following events: - -(i) loading the Software by any or all means, notably, by downloading from -a remote server, or by loading from a physical medium; - -(ii) the first time the Licensee exercises any of the rights granted hereunder. - -3.2 One copy of the Agreement, containing a notice relating to the characteristics -of the Software, to the limited warranty, and to the fact that its use is -restricted to experienced users has been provided to the Licensee prior to -its acceptance as set forth in Article 3.1 <#accepting> hereinabove, and the -Licensee hereby acknowledges that it has read and understood it. - - Article 4 - EFFECTIVE DATE AND TERM - - 4.1 EFFECTIVE DATE - -The Agreement shall become effective on the date when it is accepted by the -Licensee as set forth in Article 3.1 <#accepting> . - - 4.2 TERM - -The Agreement shall remain in force for the entire legal term of protection -of the economic rights over the Software. - - Article 5 - SCOPE OF RIGHTS GRANTED - -The Licensor hereby grants to the Licensee, who accepts, the following rights -over the Software for any or all use, and for the term of the Agreement, on -the basis of the terms and conditions set forth hereinafter. - -Besides, if the Licensor owns or comes to own one or more patents protecting -all or part of the functions of the Software or of its components, the Licensor -undertakes not to enforce the rights granted by these patents against successive -Licensees using, exploiting or modifying the Software. If these patents are -transferred, the Licensor undertakes to have the transferees subscribe to -the obligations set forth in this paragraph. - - 5.1 RIGHT OF USE - -The Licensee is authorized to use the Software, without any limitation as -to its fields of application, with it being hereinafter specified that this -comprises: - -1. permanent or temporary reproduction of all or part of the Software by any -or all means and in any or all form. - -2. loading, displaying, running, or storing the Software on any or all medium. - -3. entitlement to observe, study or test its operation so as to determine -the ideas and principles behind any or all constituent elements of said Software. -This shall apply when the Licensee carries out any or all loading, displaying, -running, transmission or storage operation as regards the Software, that it -is entitled to carry out hereunder. - - 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS - -The right to make Contributions includes the right to translate, adapt, arrange, -or make any or all modifications to the Software, and the right to reproduce -the resulting software. - -The Licensee is authorized to make any or all Contributions to the Software -provided that it includes an explicit notice that it is the author of said -Contribution and indicates the date of the creation thereof. - - 5.3 RIGHT OF DISTRIBUTION - -In particular, the right of distribution includes the right to publish, transmit -and communicate the Software to the general public on any or all medium, and -by any or all means, and the right to market, either in consideration of a -fee, or free of charge, one or more copies of the Software by any means. - -The Licensee is further authorized to distribute copies of the modified or -unmodified Software to third parties according to the terms and conditions -set forth hereinafter. - - 5.3.1. DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION - -The Licensee is authorized to distribute true copies of the Software in Source -Code or Object Code form, provided that said distribution complies with all -the provisions of the Agreement and is accompanied by: - - 1. a copy of the Agreement, - -2. a notice relating to the limitation of both the Licensor's warranty and -liability as set forth in Articles 8 and 9, - -and that, in the event that only the Object Code of the Software is redistributed, -the Licensee allows effective access to the full Source Code of the Software -for a period of at least three years from the distribution of the Software, -it being understood that the additional acquisition cost of the Source Code -shall not exceed the cost of the data transfer. - - 5.3.2. DISTRIBUTION OF MODIFIED SOFTWARE - -When the Licensee makes a Contribution to the Software, the terms and conditions -for the distribution of the resulting Modified Software become subject to -all the provisions of this Agreement. - -The Licensee is authorized to distribute the Modified Software, in source -code or object code form, provided that said distribution complies with all -the provisions of the Agreement and is accompanied by: - - 1. a copy of the Agreement, - -2. a notice relating to the limitation of both the Licensor's warranty and -liability as set forth in Articles 8 and 9, - -and, in the event that only the object code of the Modified Software is redistributed, - -3. a note stating the conditions of effective access to the full source code -of the Modified Software for a period of at least three years from the distribution -of the Modified Software, it being understood that the additional acquisition -cost of the source code shall not exceed the cost of the data transfer. - - 5.3.3. DISTRIBUTION OF EXTERNAL MODULES - -When the Licensee has developed an External Module, the terms and conditions -of this Agreement do not apply to said External Module, that may be distributed -under a separate license agreement. - - 5.3.4. COMPATIBILITY WITH OTHER LICENSES - -The Licensee can include a code that is subject to the provisions of one of -the versions of the GNU GPL, GNU Affero GPL and/or EUPL in the Modified or -unmodified Software, and distribute that entire code under the terms of the -same version of the GNU GPL, GNU Affero GPL and/or EUPL. - -The Licensee can include the Modified or unmodified Software in a code that -is subject to the provisions of one of the versions of the GNU GPL, GNU Affero -GPL and/or EUPL and distribute that entire code under the terms of the same -version of the GNU GPL, GNU Affero GPL and/or EUPL. - - Article 6 - INTELLECTUAL PROPERTY - - 6.1 OVER THE INITIAL SOFTWARE - -The Holder owns the economic rights over the Initial Software. Any or all -use of the Initial Software is subject to compliance with the terms and conditions -under which the Holder has elected to distribute its work and no one shall -be entitled to modify the terms and conditions for the distribution of said -Initial Software. - -The Holder undertakes that the Initial Software will remain ruled at least -by this Agreement, for the duration set forth in Article 4.2 <#term> . - - 6.2 OVER THE CONTRIBUTIONS - -The Licensee who develops a Contribution is the owner of the intellectual -property rights over this Contribution as defined by applicable law. - - 6.3 OVER THE EXTERNAL MODULES - -The Licensee who develops an External Module is the owner of the intellectual -property rights over this External Module as defined by applicable law and -is free to choose the type of agreement that shall govern its distribution. - - 6.4 JOINT PROVISIONS - - The Licensee expressly undertakes: - -1. not to remove, or modify, in any manner, the intellectual property notices -attached to the Software; - -2. to reproduce said notices, in an identical manner, in the copies of the -Software modified or not. - -The Licensee undertakes not to directly or indirectly infringe the intellectual -property rights on the Software of the Holder and/or Contributors, and to -take, where applicable, vis-à-vis its staff, any and all measures required -to ensure respect of said intellectual property rights of the Holder and/or -Contributors. - - Article 7 - RELATED SERVICES - -7.1 Under no circumstances shall the Agreement oblige the Licensor to provide -technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of services. The terms -and conditions of such technical assistance, and/or such maintenance, shall -be set forth in a separate instrument. Only the Licensor offering said maintenance -and/or technical assistance services shall incur liability therefor. - -7.2 Similarly, any Licensor is entitled to offer to its licensees, under its -sole responsibility, a warranty, that shall only be binding upon itself, for -the redistribution of the Software and/or the Modified Software, under terms -and conditions that it is free to decide. Said warranty, and the financial -terms and conditions of its application, shall be subject of a separate instrument -executed between the Licensor and the Licensee. - - Article 8 - LIABILITY - -8.1 Subject to the provisions of Article 8.2, the Licensee shall be entitled -to claim compensation for any direct loss it may have suffered from the Software -as a result of a fault on the part of the relevant Licensor, subject to providing -evidence thereof. - -8.2 The Licensor's liability is limited to the commitments made under this -Agreement and shall not be incurred as a result of in particular: (i) loss -due the Licensee's total or partial failure to fulfill its obligations, (ii) -direct or consequential loss that is suffered by the Licensee due to the use -or performance of the Software, and (iii) more generally, any consequential -loss. In particular the Parties expressly agree that any or all pecuniary -or business loss (i.e. loss of data, loss of profits, operating loss, loss -of customers or orders, opportunity cost, any disturbance to business activities) -or any or all legal proceedings instituted against the Licensee by a third -party, shall constitute consequential loss and shall not provide entitlement -to any or all compensation from the Licensor. - - Article 9 - WARRANTY - -9.1 The Licensee acknowledges that the scientific and technical state-of-the-art -when the Software was distributed did not enable all possible uses to be tested -and verified, nor for the presence of possible defects to be detected. In -this respect, the Licensee's attention has been drawn to the risks associated -with loading, using, modifying and/or developing and reproducing the Software -which are reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, the -suitability of the product for its requirements, its good working order, and -for ensuring that it shall not cause damage to either persons or properties. - -9.2 The Licensor hereby represents, in good faith, that it is entitled to -grant all the rights over the Software (including in particular the rights -set forth in Article 5 <#scope> ). - -9.3 The Licensee acknowledges that the Software is supplied "as is" by the -Licensor without any other express or tacit warranty, other than that provided -for in Article 9.2 <#good-faith> and, in particular, without any warranty -as to its commercial value, its secured, safe, innovative or relevant nature. - -Specifically, the Licensor does not warrant that the Software is free from -any error, that it will operate without interruption, that it will be compatible -with the Licensee's own equipment and software configuration, nor that it -will meet the Licensee's requirements. - -9.4 The Licensor does not either expressly or tacitly warrant that the Software -does not infringe any third party intellectual property right relating to -a patent, software or any other property right. Therefore, the Licensor disclaims -any and all liability towards the Licensee arising out of any or all proceedings -for infringement that may be instituted in respect of the use, modification -and redistribution of the Software. Nevertheless, should such proceedings -be instituted against the Licensee, the Licensor shall provide it with technical -and legal expertise for its defense. Such technical and legal expertise shall -be decided on a case-by-case basis between the relevant Licensor and the Licensee -pursuant to a memorandum of understanding. The Licensor disclaims any and -all liability as regards the Licensee's use of the name of the Software. No -warranty is given as regards the existence of prior rights over the name of -the Software or as regards the existence of a trademark. - - Article 10 - TERMINATION - -10.1 In the event of a breach by the Licensee of its obligations hereunder, -the Licensor may automatically terminate this Agreement thirty (30) days after -notice has been sent to the Licensee and has remained ineffective. - -10.2 A Licensee whose Agreement is terminated shall no longer be authorized -to use, modify or distribute the Software. However, any licenses that it may -have granted prior to termination of the Agreement shall remain valid subject -to their having been granted in compliance with the terms and conditions hereof. - - Article 11 - MISCELLANEOUS - - 11.1 EXCUSABLE EVENTS - -Neither Party shall be liable for any or all delay, or failure to perform -the Agreement, that may be attributable to an event of force majeure, an act -of God or an outside cause, such as defective functioning or interruptions -of the electricity or telecommunications networks, network paralysis following -a virus attack, intervention by government authorities, natural disasters, -water damage, earthquakes, fire, explosions, strikes and labor unrest, war, -etc. - -11.2 Any failure by either Party, on one or more occasions, to invoke one -or more of the provisions hereof, shall under no circumstances be interpreted -as being a waiver by the interested Party of its right to invoke said provision(s) -subsequently. - -11.3 The Agreement cancels and replaces any or all previous agreements, whether -written or oral, between the Parties and having the same purpose, and constitutes -the entirety of the agreement between said Parties concerning said purpose. -No supplement or modification to the terms and conditions hereof shall be -effective as between the Parties unless it is made in writing and signed by -their duly authorized representatives. - -11.4 In the event that one or more of the provisions hereof were to conflict -with a current or future applicable act or legislative text, said act or legislative -text shall prevail, and the Parties shall make the necessary amendments so -as to comply with said act or legislative text. All other provisions shall -remain effective. Similarly, invalidity of a provision of the Agreement, for -any reason whatsoever, shall not cause the Agreement as a whole to be invalid. - - 11.5 LANGUAGE - -The Agreement is drafted in both French and English and both versions are -deemed authentic. - - Article 12 - NEW VERSIONS OF THE AGREEMENT - -12.1 Any person is authorized to duplicate and distribute copies of this Agreement. - -12.2 So as to ensure coherence, the wording of this Agreement is protected -and may only be modified by the authors of the License, who reserve the right -to periodically publish updates or new versions of the Agreement, each with -a separate number. These subsequent versions may address new issues encountered -by Free Software. - -12.3 Any Software distributed under a given version of the Agreement may only -be subsequently distributed under the same version of the Agreement or a subsequent -version, subject to the provisions of Article 5.3.4 <#compatibility> . - - Article 13 - GOVERNING LAW AND JURISDICTION - -13.1 The Agreement is governed by French law. The Parties agree to endeavor -to seek an amicable solution to any disagreements or disputes that may arise -during the performance of the Agreement. - -13.2 Failing an amicable solution within two (2) months as from their occurrence, -and unless emergency proceedings are necessary, the disagreements or disputes -shall be referred to the Paris Courts having jurisdiction, by the more diligent -Party. 1 CeCILL stands for Ce(a) C(nrs) I(nria) L(ogiciel) L(ibre) diff --git a/java/README.md b/java/README.md deleted file mode 100644 index 22317a9..0000000 --- a/java/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# APIGroupes - -Attention l'API n'est pas encore complète. - -API pour le projet IHM 2022-2023. - -Vous avez un makefile qui permet de générer la javadoc en faisant. -$ make doc - -Vous pouvez ensuite naviguer dans la doc en commençant par le fichier doc/overview-tree.html - -Un petit fichier de test permet de mieux comprendre l'architecture. -Il faut faire -$ make run - -Ensuite vous pouvez aller lire les sources. diff --git a/java/doc/allclasses-frame.html b/java/doc/allclasses-frame.html deleted file mode 100644 index 977f763..0000000 --- a/java/doc/allclasses-frame.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - -All Classes - - - - - -

All Classes

- - - diff --git a/java/doc/allclasses-noframe.html b/java/doc/allclasses-noframe.html deleted file mode 100644 index 9329954..0000000 --- a/java/doc/allclasses-noframe.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - -All Classes - - - - - -

All Classes

- - - diff --git a/java/doc/constant-values.html b/java/doc/constant-values.html deleted file mode 100644 index c13faa3..0000000 --- a/java/doc/constant-values.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - -Constant Field Values - - - - - - - - - - - -
-

Constant Field Values

-

Contents

-
- - - - - - diff --git a/java/doc/deprecated-list.html b/java/doc/deprecated-list.html deleted file mode 100644 index 563ff24..0000000 --- a/java/doc/deprecated-list.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - -Deprecated List - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - - - - - - -
- - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.html deleted file mode 100644 index 657760c..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractChangementFactory.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - -AbstractChangementFactory - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface AbstractChangementFactory

-
-
-
-
    -
  • -
    -
    -
    public interface AbstractChangementFactory
    -
    Usine abstraite gérant l'ensemble des changements.
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getGroupeFactory

        -
        AbstractGroupeFactory getGroupeFactory()
        -
        permet de récupérer une usine abstraite pour les groupes qui fonctionne en tandem avec cette usine abstraite
        -
        -
        Returns:
        -
        cette usine abstraite
        -
        -
      • -
      - - - -
        -
      • -

        getAllChangements

        -
        java.util.Iterator<Changement> getAllChangements()
        -
        permet de récupérer les changements
        -
        -
        Returns:
        -
        tous les changements en attente
        -
        -
      • -
      - - - -
        -
      • -

        deleteChangement

        -
        void deleteChangement(Changement c)
        -
        permet de supprimer un changement connu de l'usine abstraite.
        -
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si inconnu de l'usine abstraite
        -
        -
      • -
      - - - -
        -
      • -

        createChangement

        -
        void createChangement(Groupe A,
        -                      Etudiant e,
        -                      Groupe B)
        -
        permet d'ajouter un nouveau changement.
        -
        -
        Parameters:
        -
        A - groupe actuel
        -
        B - groupe demandé
        -
        e - étudiant concerné par le changement
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si les groupes ou l'étudiant ne sont pas connus de la factory partenaire, ou e n'appartient pas à A ou A et B ne sont pas frères dans l'arbre des groupes.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.html deleted file mode 100644 index 34a2c10..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/AbstractGroupeFactory.html +++ /dev/null @@ -1,428 +0,0 @@ - - - - - -AbstractGroupeFactory - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface AbstractGroupeFactory

-
-
-
-
    -
  • -
    -
    All Known Implementing Classes:
    -
    AbstractGroupeFactoryNP
    -
    -
    -
    -
    public interface AbstractGroupeFactory
    -
    Usine abstraite gérant l'ensemble des groupes.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      voidaddToGroupe(Groupe g, - Etudiant e) -
      permet d'ajouter un étudiant à un groupe.
      -
      voidcreateGroupe(Groupe pere, - java.lang.String name, - int min, - int max) -
      permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
      -
      voidcreatePartition(Groupe pere, - java.lang.String name, - int n) -
      permet de créer une partition automatiquement sous un groupe donné.
      -
      voiddeleteGroupe(Groupe g) -
      permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes.
      -
      voiddropFromGroupe(Groupe g, - Etudiant e) -
      permet d'enlever un étudiant d'un groupe.
      -
      java.util.Set<Etudiant>getEtudiants(java.lang.String nomEtu) -
      permet de retrouver un étudiant à partir d'un String.
      -
      java.util.Set<Groupe>getGroupesOfEtudiant(Etudiant etu) -
      permet de retrouver les groupes d'un étudiant.
      -
      GroupegetPromotion() -
      permet de récupérer le Groupe qui contient les étudiants de toute la promotion
      -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getPromotion

        -
        Groupe getPromotion()
        -
        permet de récupérer le Groupe qui contient les étudiants de toute la promotion
        -
        -
        Returns:
        -
        la promo.
        -
        -
      • -
      - - - -
        -
      • -

        deleteGroupe

        -
        void deleteGroupe(Groupe g)
        -
        permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes. - Pour détruire un groupe connu qui en contient d'autres il faut le faire récursivement.
        -
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalStateException - si le groupe contient des groupes
        -
        java.lang.IllegalArgumentException - si le groupe n'est pas connu de l'usine abstraite ou bien si le groupe est celui de toute la promotion (renvoyé par getPromotion)
        -
        -
      • -
      - - - -
        -
      • -

        createGroupe

        -
        void createGroupe(Groupe pere,
        -                  java.lang.String name,
        -                  int min,
        -                  int max)
        -
        permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
        -
        -
        Parameters:
        -
        pere - le groupe père du groupe à créer
        -
        name - le nom du groupe à créer
        -
        min,max - bornes indicatives sur la taille du groupe à créer
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si le groupe pere est de type PARTITION - ou si il n'y a pas 0 < min <= max
        -
        -
      • -
      - - - -
        -
      • -

        createPartition

        -
        void createPartition(Groupe pere,
        -                     java.lang.String name,
        -                     int n)
        -
        permet de créer une partition automatiquement sous un groupe donné.
        -
        -
        Parameters:
        -
        pere - le groupe père du groupe à partitionner
        -
        name - le nom des groupe à créer (on ajoutera à la suite un numéro ou une lettre pour distinguer chaque groupe)
        -
        n - le nombre de partitions
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si le groupe pere est de type PARTITION - ou n négatif ou nul - - NB. doit créer une "copie" de pere - sous pere de type Partition et ajouter sous ce groupe, n groupes de type "FREE". - les valeurs min et max de ces n groupes sont - min = 0 et - max = partie entière de N/n plus 1, où N est le nombre max du groupe pere.
        -
        -
      • -
      - - - -
        -
      • -

        addToGroupe

        -
        void addToGroupe(Groupe g,
        -                 Etudiant e)
        -
        permet d'ajouter un étudiant à un groupe.
        -
        -
        Parameters:
        -
        g - le groupe dans lequel il faut ajouter l'étudiant
        -
        e - l'étudiant à ajouter
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - la factory ne connaît pas g
        -
        java.lang.IllegalStateException - le père de g ne contient pas e
        -
        -
      • -
      - - - -
        -
      • -

        dropFromGroupe

        -
        void dropFromGroupe(Groupe g,
        -                    Etudiant e)
        -
        permet d'enlever un étudiant d'un groupe.
        -
        -
        Parameters:
        -
        g - le groupe dans lequel il faut enlever l'étudiant
        -
        e - l'étudiant à enlever
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalStateException - g ne contient pas e
        -
        java.lang.IllegalArgumentException - la factory ne connaît pas g
        -
        -
      • -
      - - - -
        -
      • -

        getEtudiants

        -
        java.util.Set<Etudiant> getEtudiants(java.lang.String nomEtu)
        -
        permet de retrouver un étudiant à partir d'un String. - - NB. dans une version simple il doit s'agir du nom exact. - dans une version un peu plus complexe, il s'agit des premières lettres du nom - dans une version avancée, on peut autoriser une expression régulière plus ou moins complexe qui est générée si la première recherche n'a pas renvoyé de candidat.
        -
        -
        Parameters:
        -
        String - nomEtu le nom approximmatif de l'étudiant
        -
        Returns:
        -
        Set l'ensemble des étudiants connus de la factory ayant un nom "proche" de ce string au sens de la remarque ci-dessus.
        -
        Throws:
        -
        java.lang.NullPointerException - si le String est null.
        -
        -
      • -
      - - - -
        -
      • -

        getGroupesOfEtudiant

        -
        java.util.Set<Groupe> getGroupesOfEtudiant(Etudiant etu)
        -
        permet de retrouver les groupes d'un étudiant.
        -
        -
        Parameters:
        -
        Etu - un étudiant
        -
        Returns:
        -
        Etudiant l'étudiant connu de la factory ayant cet identifiant
        -
        Throws:
        -
        java.lang.NullPointerException - si le String est null.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Changement.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Changement.html deleted file mode 100644 index 2219652..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Changement.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - -Changement - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface Changement

-
-
-
-
    -
  • -
    -
    All Superinterfaces:
    -
    MonPrint
    -
    -
    -
    All Known Implementing Classes:
    -
    ChangementNP
    -
    -
    -
    -
    public interface Changement
    -extends MonPrint
    -
    Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and TypeMethod and Description
      GroupegetA() -
      permet de récupérer le groupe de depart
      -
      GroupegetB() -
      permet de récupérer le groupe d'arrivée
      -
      EtudiantgetEtu() -
      permet de récupérer l'étudiant demandant le changement
      -
      intgetId() -
      permet de récupérer l'identifiant du changement (référence interne sans intérêt irl).
      -
      default java.lang.StringmonPrint() -
      Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint().
      -
      -
    • -
    -
  • -
-
-
- -
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.html deleted file mode 100644 index e2b7068..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Etudiant.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - -Etudiant - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface Etudiant

-
-
-
-
    -
  • -
    -
    All Superinterfaces:
    -
    MonPrint
    -
    -
    -
    All Known Implementing Classes:
    -
    EtudiantNP
    -
    -
    -
    -
    public interface Etudiant
    -extends MonPrint
    -
    Un étudiant
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and TypeMethod and Description
      intgetId() -
      permet de récupérer l'identifiant de l'étudiant.
      -
      java.lang.StringgetNom() -
      permet de récupérer
      -
      java.lang.StringgetPrenom() -
      permet de récupérer
      -
      default java.lang.StringmonPrint() -
      Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint().
      -
      -
    • -
    -
  • -
-
-
- -
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Groupe.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Groupe.html deleted file mode 100644 index 4b33fb2..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/Groupe.html +++ /dev/null @@ -1,506 +0,0 @@ - - - - - -Groupe - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface Groupe

-
-
-
-
    -
  • -
    -
    All Superinterfaces:
    -
    MonPrint
    -
    -
    -
    All Known Implementing Classes:
    -
    GroupeNP
    -
    -
    -
    -
    public interface Groupe
    -extends MonPrint
    -
    Un groupe
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and TypeMethod and Description
      booleanaddEtudiant(Etudiant e) -
      Ajoute un étudiant.
      -
      booleanaddSousGroupe(Groupe g) -
      Ajoute un sous-groupe.
      -
      java.util.Set<Etudiant>getEtudiants() -
      Potentiellement "vide"
      -
      intgetId() -
      permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
      -
      intgetMax() -
      permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
      -
      intgetMin() -
      permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
      -
      java.lang.StringgetName() -
      permet de récupérer le nom d'un groupe (utile irl).
      -
      GroupegetPointPoint() -
      permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
      -
      intgetSize() -
      permet de récupérer le nombre d'étudiants dans ce groupe.
      -
      java.util.Set<Groupe>getSousGroupes() -
      Potentiellement "vide"
      -
      TypeGroupegetType() -
      permet de récupérer la nature du groupe
      -
      default java.lang.StringmonPrint() -
      Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint().
      -
      booleanremoveEtudiant(Etudiant e) -
      Enlève un étudiant.
      -
      booleanremoveSousGroupe(Groupe g) -
      Enlève un groupe.
      -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        addEtudiant

        -
        boolean addEtudiant(Etudiant e)
        -
        Ajoute un étudiant. Se comporte comme add de l'interface Set.
        -
        -
        Returns:
        -
        true iff e est ajouté
        -
        -
      • -
      - - - -
        -
      • -

        removeEtudiant

        -
        boolean removeEtudiant(Etudiant e)
        -
        Enlève un étudiant. Se comporte comme remove de l'interface Set.
        -
        -
        Returns:
        -
        true iff e est enlevé
        -
        -
      • -
      - - - -
        -
      • -

        addSousGroupe

        -
        boolean addSousGroupe(Groupe g)
        -
        Ajoute un sous-groupe. Se comporte comme add de l'interface Set. - vérifie que le groupe passé en argument a bien renseigné this comme son père.
        -
        -
        Returns:
        -
        true iff g est ajouté
        -
        -
      • -
      - - - -
        -
      • -

        removeSousGroupe

        -
        boolean removeSousGroupe(Groupe g)
        -
        Enlève un groupe. Se comporte comme remove de l'interface Set.
        -
        -
        Returns:
        -
        true iff e est enlevé
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        int getId()
        -
        permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
        -
        -
        Returns:
        -
        l'identifiant.
        -
        -
      • -
      - - - -
        -
      • -

        getName

        -
        java.lang.String getName()
        -
        permet de récupérer le nom d'un groupe (utile irl).
        -
        -
        Returns:
        -
        le nom.
        -
        -
      • -
      - - - -
        -
      • -

        getMin

        -
        int getMin()
        -
        permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
        -
        -
        Returns:
        -
        le minimum souhaité
        -
        -
      • -
      - - - -
        -
      • -

        getMax

        -
        int getMax()
        -
        permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
        -
        -
        Returns:
        -
        le maximum souhaité
        -
        -
      • -
      - - - -
        -
      • -

        getSize

        -
        int getSize()
        -
        permet de récupérer le nombre d'étudiants dans ce groupe.
        -
        -
        Returns:
        -
        le nombre de places prises (pas forcément limité entre Min et Max, mais c'est le but)
        -
        -
      • -
      - - - -
        -
      • -

        getType

        -
        TypeGroupe getType()
        -
        permet de récupérer la nature du groupe
        -
        -
        Returns:
        -
        le type du groupe
        -
        -
      • -
      - - - -
        -
      • -

        getPointPoint

        -
        Groupe getPointPoint()
        -
        permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
        -
        -
        Returns:
        -
        le père
        -
        -
      • -
      - - - -
        -
      • -

        getSousGroupes

        -
        java.util.Set<Groupe> getSousGroupes()
        -
        Potentiellement "vide"
        -
        -
        Returns:
        -
        l'ensemble des sous-groupes.
        -
        -
      • -
      - - - -
        -
      • -

        getEtudiants

        -
        java.util.Set<Etudiant> getEtudiants()
        -
        Potentiellement "vide"
        -
        -
        Returns:
        -
        l'ensemble des étudiants.
        -
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.html deleted file mode 100644 index d2d60c7..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/MonPrint.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - -MonPrint - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Interface MonPrint

-
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      java.lang.StringmonPrint() -
      Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint().
      -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        monPrint

        -
        java.lang.String monPrint()
        -
        Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint(). - Toutes nos interfaces vont étendre cette interface.
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.html deleted file mode 100644 index 8bb908c..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/TypeGroupe.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - -TypeGroupe - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.API
-

Enum TypeGroupe

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<TypeGroupe>
    • -
    • -
        -
      • fr.iutfbleau.projetIHM2022FI2.API.TypeGroupe
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<TypeGroupe>
    -
    -
    -
    -
    public enum TypeGroupe
    -extends java.lang.Enum<TypeGroupe>
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Enum Constant Summary

      - - - - - - - - - - - - - - -
      Enum Constants 
      Enum Constant and Description
      FREE 
      PARTITION 
      ROOT 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - -
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static TypeGroupevalueOf(java.lang.String name) -
      Returns the enum constant of this type with the specified name.
      -
      static TypeGroupe[]values() -
      Returns an array containing the constants of this enum type, in -the order they are declared.
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Enum

        -clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static TypeGroupe[] values()
        -
        Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
        -for (TypeGroupe c : TypeGroupe.values())
        -    System.out.println(c);
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are declared
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static TypeGroupe valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.)
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-frame.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-frame.html deleted file mode 100644 index a38b344..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-frame.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.API - - - - - -

fr.iutfbleau.projetIHM2022FI2.API

- - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-summary.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-summary.html deleted file mode 100644 index 19fdcdd..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-summary.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.API - - - - - - - - - - - -
-

Package fr.iutfbleau.projetIHM2022FI2.API

-
-
-
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Interface Summary 
    InterfaceDescription
    AbstractChangementFactory -
    Usine abstraite gérant l'ensemble des changements.
    -
    AbstractGroupeFactory -
    Usine abstraite gérant l'ensemble des groupes.
    -
    Changement -
    Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B.
    -
    Etudiant -
    Un étudiant
    -
    Groupe -
    Un groupe
    -
    MonPrint -
    Toutes nos interfaces vont étendre cette interface.
    -
    -
  • -
  • - - - - - - - - - - - - -
    Enum Summary 
    EnumDescription
    TypeGroupe 
    -
  • -
-
- - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-tree.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-tree.html deleted file mode 100644 index 8354ddd..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/API/package-tree.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.API Class Hierarchy - - - - - - - - - - - -
-

Hierarchy For Package fr.iutfbleau.projetIHM2022FI2.API

-Package Hierarchies: - -
-
-

Interface Hierarchy

- -

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    • -
    -
  • -
-
- - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.html deleted file mode 100644 index 938f61a..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/AbstractGroupeFactoryNP.html +++ /dev/null @@ -1,503 +0,0 @@ - - - - - -AbstractGroupeFactoryNP - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.MNP
-

Class AbstractGroupeFactoryNP

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    AbstractGroupeFactory
    -
    -
    -
    -
    public class AbstractGroupeFactoryNP
    -extends java.lang.Object
    -implements AbstractGroupeFactory
    -
    Usine abstraite gérant l'ensemble des groupes.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      AbstractGroupeFactoryNP(java.lang.String name, - int min, - int max) -
      Le constructeur fabrique le groupe promotion vide.
      -
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidaddToGroupe(Groupe g, - Etudiant e) -
      permet d'ajouter un étudiant à un groupe.
      -
      voidcreateGroupe(Groupe pere, - java.lang.String name, - int min, - int max) -
      permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
      -
      voidcreatePartition(Groupe pere, - java.lang.String name, - int n) -
      permet de créer une partition automatiquement sous un groupe donné.
      -
      voiddeleteGroupe(Groupe g) -
      permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes.
      -
      voiddropFromGroupe(Groupe g, - Etudiant e) -
      permet d'enlever un étudiant d'un groupe.
      -
      java.util.Set<Etudiant>getEtudiants(java.lang.String nomEtu) -
      permet de retrouver un étudiant à partir d'un String.
      -
      java.util.Set<Groupe>getGroupesOfEtudiant(Etudiant etu) -
      permet de retrouver les groupes d'un étudiant.
      -
      GroupegetPromotion() -
      permet de récupérer le Groupe qui contient les étudiants de toute la promotion
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        AbstractGroupeFactoryNP

        -
        public AbstractGroupeFactoryNP(java.lang.String name,
        -                               int min,
        -                               int max)
        -
        Le constructeur fabrique le groupe promotion vide. - Il faut ensuite y ajouter les étudiants.
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getPromotion

        -
        public Groupe getPromotion()
        -
        permet de récupérer le Groupe qui contient les étudiants de toute la promotion
        -
        -
        Specified by:
        -
        getPromotion in interface AbstractGroupeFactory
        -
        Returns:
        -
        la promo.
        -
        -
      • -
      - - - -
        -
      • -

        deleteGroupe

        -
        public void deleteGroupe(Groupe g)
        -
        permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes. - Pour détruire un groupe connu qui en contient d'autres il faut le faire récursivement.
        -
        -
        Specified by:
        -
        deleteGroupe in interface AbstractGroupeFactory
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalStateException - si le groupe contient des groupes
        -
        java.lang.IllegalArgumentException - si le groupe n'est pas connu de l'usine abstraite ou bien si le groupe est celui de toute la promotion (renvoyé par getPromotion)
        -
        -
      • -
      - - - -
        -
      • -

        createGroupe

        -
        public void createGroupe(Groupe pere,
        -                         java.lang.String name,
        -                         int min,
        -                         int max)
        -
        permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
        -
        -
        Specified by:
        -
        createGroupe in interface AbstractGroupeFactory
        -
        Parameters:
        -
        pere - le groupe père du groupe à créer
        -
        name - le nom du groupe à créer
        -
        min,max - bornes indicatives sur la taille du groupe à créer
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si le groupe pere est de type PARTITION - ou si il n'y a pas 0 < min <= max
        -
        -
      • -
      - - - -
        -
      • -

        createPartition

        -
        public void createPartition(Groupe pere,
        -                            java.lang.String name,
        -                            int n)
        -
        permet de créer une partition automatiquement sous un groupe donné.
        -
        -
        Specified by:
        -
        createPartition in interface AbstractGroupeFactory
        -
        Parameters:
        -
        pere - le groupe père du groupe à partitionner
        -
        name - le nom des groupe à créer (on ajoute à la suite un numéro de 1 à n pour distinguer chaque groupe formant la partition)
        -
        n - le nombre de partitions
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - si le groupe pere est de type PARTITION - ou n négatif ou nul - - NB. doit créer une "copie" de pere - sous pere de type Partition et ajouter sous ce groupe, n groupes de type "FREE". - les valeurs min et max de ces n groupes sont - min = 0 et - max = partie entière de N/n plus 1, où N est le nombre max du groupe pere.
        -
        -
      • -
      - - - -
        -
      • -

        addToGroupe

        -
        public void addToGroupe(Groupe g,
        -                        Etudiant e)
        -
        permet d'ajouter un étudiant à un groupe.
        -
        -
        Specified by:
        -
        addToGroupe in interface AbstractGroupeFactory
        -
        Parameters:
        -
        g - le groupe dans lequel il faut ajouter l'étudiant
        -
        e - l'étudiant à ajouter
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalArgumentException - la factory ne connaît pas g
        -
        java.lang.IllegalStateException - le père de g ne contient pas e
        -
        -
      • -
      - - - -
        -
      • -

        dropFromGroupe

        -
        public void dropFromGroupe(Groupe g,
        -                           Etudiant e)
        -
        permet d'enlever un étudiant d'un groupe.
        -
        -
        Specified by:
        -
        dropFromGroupe in interface AbstractGroupeFactory
        -
        Parameters:
        -
        g - le groupe dans lequel il faut enlever l'étudiant
        -
        e - l'étudiant à enlever
        -
        Throws:
        -
        java.lang.NullPointerException - si un argument est null
        -
        java.lang.IllegalStateException - g ne contient pas e
        -
        java.lang.IllegalArgumentException - la factory ne connaît pas g
        -
        -
      • -
      - - - -
        -
      • -

        getEtudiants

        -
        public java.util.Set<Etudiant> getEtudiants(java.lang.String nomEtu)
        -
        permet de retrouver un étudiant à partir d'un String. - - NB. dans une version simple il doit s'agir du nom exact. - dans une version un peu plus complexe, il s'agit des premières lettres du nom - dans une version avancée, on peut autoriser une expression régulière plus ou moins complexe qui est générée si la première recherche n'a pas renvoyé de candidat.
        -
        -
        Specified by:
        -
        getEtudiants in interface AbstractGroupeFactory
        -
        Parameters:
        -
        String - nomEtu le nom approximmatif de l'étudiant
        -
        Returns:
        -
        Set l'ensemble des étudiants connus de la factory ayant un nom "proche" de ce string au sens de la remarque ci-dessus.
        -
        Throws:
        -
        java.lang.NullPointerException - si le String est null.
        -
        -
      • -
      - - - -
        -
      • -

        getGroupesOfEtudiant

        -
        public java.util.Set<Groupe> getGroupesOfEtudiant(Etudiant etu)
        -
        permet de retrouver les groupes d'un étudiant.
        -
        -
        Specified by:
        -
        getGroupesOfEtudiant in interface AbstractGroupeFactory
        -
        Parameters:
        -
        Etu - un étudiant
        -
        Returns:
        -
        Etudiant l'étudiant connu de la factory ayant cet identifiant
        -
        Throws:
        -
        java.lang.NullPointerException - si le String est null.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/ChangementNP.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/ChangementNP.html deleted file mode 100644 index 3b9bc2e..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/ChangementNP.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - -ChangementNP - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.MNP
-

Class ChangementNP

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    Changement, MonPrint
    -
    -
    -
    -
    public class ChangementNP
    -extends java.lang.Object
    -implements Changement
    -
    Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B. - - Implémentation non persistante fournie avec l'API.
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      GroupegetA() -
      permet de récupérer le groupe de depart
      -
      GroupegetB() -
      permet de récupérer le groupe d'arrivée
      -
      EtudiantgetEtu() -
      permet de récupérer l'étudiant demandant le changement
      -
      intgetId() -
      permet de récupérer l'identifiant du changement (référence interne sans intérêt irl).
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      - -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getId

        -
        public int getId()
        -
        permet de récupérer l'identifiant du changement (référence interne sans intérêt irl).
        -
        -
        Specified by:
        -
        getId in interface Changement
        -
        Returns:
        -
        l'identifiant.
        -
        -
      • -
      - - - -
        -
      • -

        getA

        -
        public Groupe getA()
        -
        permet de récupérer le groupe de depart
        -
        -
        Specified by:
        -
        getA in interface Changement
        -
        Returns:
        -
        ce groupe.
        -
        -
      • -
      - - - -
        -
      • -

        getB

        -
        public Groupe getB()
        -
        permet de récupérer le groupe d'arrivée
        -
        -
        Specified by:
        -
        getB in interface Changement
        -
        Returns:
        -
        ce groupe.
        -
        -
      • -
      - - - -
        -
      • -

        getEtu

        -
        public Etudiant getEtu()
        -
        permet de récupérer l'étudiant demandant le changement
        -
        -
        Specified by:
        -
        getEtu in interface Changement
        -
        Returns:
        -
        cet étudiant
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/EtudiantNP.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/EtudiantNP.html deleted file mode 100644 index f9c563a..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/EtudiantNP.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - -EtudiantNP - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.MNP
-

Class EtudiantNP

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • fr.iutfbleau.projetIHM2022FI2.MNP.EtudiantNP
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    Etudiant, MonPrint
    -
    -
    -
    -
    public class EtudiantNP
    -extends java.lang.Object
    -implements Etudiant
    -
    Un étudiant
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      EtudiantNP(java.lang.String nom, - java.lang.String prenom) -
      Constructeur.
      -
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      intgetId() -
      permet de récupérer l'identifiant de l'étudiant.
      -
      java.lang.StringgetNom() -
      permet de récupérer
      -
      java.lang.StringgetPrenom() -
      permet de récupérer
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      - -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        EtudiantNP

        -
        public EtudiantNP(java.lang.String nom,
        -                  java.lang.String prenom)
        -
        Constructeur.
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getId

        -
        public int getId()
        -
        permet de récupérer l'identifiant de l'étudiant.
        -
        -
        Specified by:
        -
        getId in interface Etudiant
        -
        Returns:
        -
        l'identifiant.
        -
        -
      • -
      - - - -
        -
      • -

        getNom

        -
        public java.lang.String getNom()
        -
        permet de récupérer
        -
        -
        Specified by:
        -
        getNom in interface Etudiant
        -
        Returns:
        -
        le nom de l'étudiant.
        -
        -
      • -
      - - - -
        -
      • -

        getPrenom

        -
        public java.lang.String getPrenom()
        -
        permet de récupérer
        -
        -
        Specified by:
        -
        getPrenom in interface Etudiant
        -
        Returns:
        -
        le prénom de l'étudiant
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/GroupeNP.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/GroupeNP.html deleted file mode 100644 index 6074ba2..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/GroupeNP.html +++ /dev/null @@ -1,605 +0,0 @@ - - - - - -GroupeNP - - - - - - - - - - - - -
-
fr.iutfbleau.projetIHM2022FI2.MNP
-

Class GroupeNP

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    Groupe, MonPrint
    -
    -
    -
    -
    public class GroupeNP
    -extends java.lang.Object
    -implements Groupe
    -
    Un groupe
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      GroupeNP(Groupe pere) -
      Nouveau groupe de type PARTITION dupliquant le groupe passé en paramètre (pour servir de racine à une partition de ce groupe de type FREE passé en paramètre).
      -
      GroupeNP(Groupe pere, - java.lang.String name, - int min, - int max) -
      Nouveau groupe vide de type FREE sans étudiants, sans sous-Groupe
      -
      GroupeNP(java.lang.String name, - int min, - int max) -
      Nouveau groupe vide de type ROOT sans étudiants, sans sous-Groupe
      -
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      booleanaddEtudiant(Etudiant e) -
      Ajoute un étudiant.
      -
      booleanaddSousGroupe(Groupe g) -
      Ajoute un sous-groupe.
      -
      java.util.Set<Etudiant>getEtudiants() -
      Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
      -
      intgetId() -
      permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
      -
      intgetMax() -
      permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
      -
      intgetMin() -
      permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
      -
      java.lang.StringgetName() -
      permet de récupérer le nom d'un groupe (utile irl).
      -
      GroupegetPointPoint() -
      permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
      -
      intgetSize() -
      permet de récupérer le nombre d'étudiants dans ce groupe.
      -
      java.util.Set<Groupe>getSousGroupes() -
      Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
      -
      TypeGroupegetType() -
      permet de récupérer la nature du groupe
      -
      booleanremoveEtudiant(Etudiant e) -
      Enlève un étudiant.
      -
      booleanremoveSousGroupe(Groupe g) -
      Enlève un groupe.
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
        -
      • - - -

        Methods inherited from interface fr.iutfbleau.projetIHM2022FI2.API.Groupe

        -monPrint
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        GroupeNP

        -
        public GroupeNP(java.lang.String name,
        -                int min,
        -                int max)
        -
        Nouveau groupe vide de type ROOT sans étudiants, sans sous-Groupe
        -
      • -
      - - - -
        -
      • -

        GroupeNP

        -
        public GroupeNP(Groupe pere,
        -                java.lang.String name,
        -                int min,
        -                int max)
        -
        Nouveau groupe vide de type FREE sans étudiants, sans sous-Groupe
        -
      • -
      - - - -
        -
      • -

        GroupeNP

        -
        public GroupeNP(Groupe pere)
        -
        Nouveau groupe de type PARTITION dupliquant le groupe passé en paramètre (pour servir de racine à une partition de ce groupe de type FREE passé en paramètre).
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        addEtudiant

        -
        public boolean addEtudiant(Etudiant e)
        -
        Ajoute un étudiant. Se comporte comme add de l'interface Set.
        -
        -
        Specified by:
        -
        addEtudiant in interface Groupe
        -
        Returns:
        -
        true iff e est ajouté
        -
        -
      • -
      - - - -
        -
      • -

        removeEtudiant

        -
        public boolean removeEtudiant(Etudiant e)
        -
        Enlève un étudiant. Se comporte comme remove de l'interface Set.
        -
        -
        Specified by:
        -
        removeEtudiant in interface Groupe
        -
        Returns:
        -
        true iff e est enlevé
        -
        -
      • -
      - - - -
        -
      • -

        addSousGroupe

        -
        public boolean addSousGroupe(Groupe g)
        -
        Ajoute un sous-groupe. Se comporte comme add de l'interface Set. - vérifie que le groupe passé en argument a bien renseigné this comme son père.
        -
        -
        Specified by:
        -
        addSousGroupe in interface Groupe
        -
        Returns:
        -
        true iff g est ajouté
        -
        -
      • -
      - - - -
        -
      • -

        removeSousGroupe

        -
        public boolean removeSousGroupe(Groupe g)
        -
        Enlève un groupe. Se comporte comme remove de l'interface Set.
        -
        -
        Specified by:
        -
        removeSousGroupe in interface Groupe
        -
        Returns:
        -
        true iff e est enlevé
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        public int getId()
        -
        permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
        -
        -
        Specified by:
        -
        getId in interface Groupe
        -
        Returns:
        -
        l'identifiant.
        -
        -
      • -
      - - - -
        -
      • -

        getName

        -
        public java.lang.String getName()
        -
        permet de récupérer le nom d'un groupe (utile irl).
        -
        -
        Specified by:
        -
        getName in interface Groupe
        -
        Returns:
        -
        le nom.
        -
        -
      • -
      - - - -
        -
      • -

        getMin

        -
        public int getMin()
        -
        permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
        -
        -
        Specified by:
        -
        getMin in interface Groupe
        -
        Returns:
        -
        le minimum souhaité
        -
        -
      • -
      - - - -
        -
      • -

        getMax

        -
        public int getMax()
        -
        permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
        -
        -
        Specified by:
        -
        getMax in interface Groupe
        -
        Returns:
        -
        le maximum souhaité
        -
        -
      • -
      - - - -
        -
      • -

        getSize

        -
        public int getSize()
        -
        permet de récupérer le nombre d'étudiants dans ce groupe.
        -
        -
        Specified by:
        -
        getSize in interface Groupe
        -
        Returns:
        -
        le nombre de places prises (pas forcément limité entre Min et Max, mais c'est le but)
        -
        -
      • -
      - - - -
        -
      • -

        getType

        -
        public TypeGroupe getType()
        -
        permet de récupérer la nature du groupe
        -
        -
        Specified by:
        -
        getType in interface Groupe
        -
        Returns:
        -
        le type du groupe
        -
        -
      • -
      - - - -
        -
      • -

        getPointPoint

        -
        public Groupe getPointPoint()
        -
        permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
        -
        -
        Specified by:
        -
        getPointPoint in interface Groupe
        -
        Returns:
        -
        le père
        -
        -
      • -
      - - - -
        -
      • -

        getSousGroupes

        -
        public java.util.Set<Groupe> getSousGroupes()
        -
        Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
        -
        -
        Specified by:
        -
        getSousGroupes in interface Groupe
        -
        Returns:
        -
        l'ensemble des sous-groupes.
        -
        -
      • -
      - - - -
        -
      • -

        getEtudiants

        -
        public java.util.Set<Etudiant> getEtudiants()
        -
        Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
        -
        -
        Specified by:
        -
        getEtudiants in interface Groupe
        -
        Returns:
        -
        l'ensemble des étudiants.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-frame.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-frame.html deleted file mode 100644 index f480c3b..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.MNP - - - - - -

fr.iutfbleau.projetIHM2022FI2.MNP

- - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-summary.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-summary.html deleted file mode 100644 index 74e851b..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-summary.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.MNP - - - - - - - - - - - -
-

Package fr.iutfbleau.projetIHM2022FI2.MNP

-
-
-
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    AbstractGroupeFactoryNP -
    Usine abstraite gérant l'ensemble des groupes.
    -
    ChangementNP -
    Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B.
    -
    EtudiantNP -
    Un étudiant
    -
    GroupeNP -
    Un groupe
    -
    -
  • -
-
- - - - - - diff --git a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-tree.html b/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-tree.html deleted file mode 100644 index febe21a..0000000 --- a/java/doc/fr/iutfbleau/projetIHM2022FI2/MNP/package-tree.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - -fr.iutfbleau.projetIHM2022FI2.MNP Class Hierarchy - - - - - - - - - - - -
-

Hierarchy For Package fr.iutfbleau.projetIHM2022FI2.MNP

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- - - - - - diff --git a/java/doc/help-doc.html b/java/doc/help-doc.html deleted file mode 100644 index dff8c48..0000000 --- a/java/doc/help-doc.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - -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.
-
-
-
    -
  • -

    Overview

    -

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    -
  • -
  • -

    Package

    -

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    -
      -
    • Interfaces (italic)
    • -
    • Classes
    • -
    • Enums
    • -
    • Exceptions
    • -
    • Errors
    • -
    • Annotation Types
    • -
    -
  • -
  • -

    Class/Interface

    -

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
      -
    • Class inheritance diagram
    • -
    • Direct Subclasses
    • -
    • All Known Subinterfaces
    • -
    • All Known Implementing Classes
    • -
    • Class/interface declaration
    • -
    • Class/interface description
    • -
    -
      -
    • Nested Class Summary
    • -
    • Field Summary
    • -
    • Constructor Summary
    • -
    • Method Summary
    • -
    -
      -
    • Field Detail
    • -
    • Constructor Detail
    • -
    • Method Detail
    • -
    -

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    -
  • -
  • -

    Annotation Type

    -

    Each annotation type has its own separate page with the following sections:

    -
      -
    • Annotation Type declaration
    • -
    • Annotation Type description
    • -
    • Required Element Summary
    • -
    • Optional Element Summary
    • -
    • Element Detail
    • -
    -
  • -
  • -

    Enum

    -

    Each enum has its own separate page with the following sections:

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Tree (Class Hierarchy)

    -

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    -
      -
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • -
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • -
    -
  • -
  • -

    Deprecated API

    -

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    -
  • -
  • -

    Index

    -

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    -
  • -
  • -

    Prev/Next

    -

    These links take you to the next or previous class, interface, package, or related page.

    -
  • -
  • -

    Frames/No Frames

    -

    These links show and hide the HTML frames. All pages are available with or without frames.

    -
  • -
  • -

    All Classes

    -

    The All Classes link shows all classes and interfaces except non-static nested types.

    -
  • -
  • -

    Serialized Form

    -

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    -
  • -
  • -

    Constant Field Values

    -

    The Constant Field Values page lists the static final fields and their values.

    -
  • -
-This help file applies to API documentation generated using the standard doclet.
- -
- - - - - - - -
- - - - diff --git a/java/doc/index-all.html b/java/doc/index-all.html deleted file mode 100644 index ec6fe3c..0000000 --- a/java/doc/index-all.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - -Index - - - - - - - - -
- - - - - - - -
- - -
A C D E F G M R T V  - - -

A

-
-
AbstractChangementFactory - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Usine abstraite gérant l'ensemble des changements.
-
-
AbstractGroupeFactory - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Usine abstraite gérant l'ensemble des groupes.
-
-
AbstractGroupeFactoryNP - Class in fr.iutfbleau.projetIHM2022FI2.MNP
-
-
Usine abstraite gérant l'ensemble des groupes.
-
-
AbstractGroupeFactoryNP(String, int, int) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
Le constructeur fabrique le groupe promotion vide.
-
-
addEtudiant(Etudiant) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Ajoute un étudiant.
-
-
addEtudiant(Etudiant) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Ajoute un étudiant.
-
-
addSousGroupe(Groupe) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Ajoute un sous-groupe.
-
-
addSousGroupe(Groupe) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Ajoute un sous-groupe.
-
-
addToGroupe(Groupe, Etudiant) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet d'ajouter un étudiant à un groupe.
-
-
addToGroupe(Groupe, Etudiant) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet d'ajouter un étudiant à un groupe.
-
-
- - - -

C

-
-
Changement - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B.
-
-
ChangementNP - Class in fr.iutfbleau.projetIHM2022FI2.MNP
-
-
Une demande de changement de groupe - concerne un étudiant, qui est dans un groupe A et veut aller dans un groupe B.
-
-
ChangementNP(Groupe, Etudiant, Groupe) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
-
 
-
createChangement(Groupe, Etudiant, Groupe) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractChangementFactory
-
-
permet d'ajouter un nouveau changement.
-
-
createGroupe(Groupe, String, int, int) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
-
-
createGroupe(Groupe, String, int, int) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet d'ajouter un groupe vide de type FREE comme sous-groupe d'un groupe donné.
-
-
createPartition(Groupe, String, int) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet de créer une partition automatiquement sous un groupe donné.
-
-
createPartition(Groupe, String, int) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet de créer une partition automatiquement sous un groupe donné.
-
-
- - - -

D

-
-
deleteChangement(Changement) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractChangementFactory
-
-
permet de supprimer un changement connu de l'usine abstraite.
-
-
deleteGroupe(Groupe) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes.
-
-
deleteGroupe(Groupe) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet de supprimer un groupe connu de l'usine abstraite qui ne contient pas de groupes.
-
-
dropFromGroupe(Groupe, Etudiant) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet d'enlever un étudiant d'un groupe.
-
-
dropFromGroupe(Groupe, Etudiant) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet d'enlever un étudiant d'un groupe.
-
-
- - - -

E

-
-
Etudiant - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Un étudiant
-
-
EtudiantNP - Class in fr.iutfbleau.projetIHM2022FI2.MNP
-
-
Un étudiant
-
-
EtudiantNP(String, String) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.EtudiantNP
-
-
Constructeur.
-
-
- - - -

F

-
-
fr.iutfbleau.projetIHM2022FI2.API - package fr.iutfbleau.projetIHM2022FI2.API
-
 
-
fr.iutfbleau.projetIHM2022FI2.MNP - package fr.iutfbleau.projetIHM2022FI2.MNP
-
 
-
- - - -

G

-
-
getA() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Changement
-
-
permet de récupérer le groupe de depart
-
-
getA() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
-
-
permet de récupérer le groupe de depart
-
-
getAllChangements() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractChangementFactory
-
-
permet de récupérer les changements
-
-
getB() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Changement
-
-
permet de récupérer le groupe d'arrivée
-
-
getB() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
-
-
permet de récupérer le groupe d'arrivée
-
-
getEtu() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Changement
-
-
permet de récupérer l'étudiant demandant le changement
-
-
getEtu() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
-
-
permet de récupérer l'étudiant demandant le changement
-
-
getEtudiants(String) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet de retrouver un étudiant à partir d'un String.
-
-
getEtudiants() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Potentiellement "vide"
-
-
getEtudiants(String) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet de retrouver un étudiant à partir d'un String.
-
-
getEtudiants() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
-
-
getGroupeFactory() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractChangementFactory
-
-
permet de récupérer une usine abstraite pour les groupes qui fonctionne en tandem avec cette usine abstraite
-
-
getGroupesOfEtudiant(Etudiant) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet de retrouver les groupes d'un étudiant.
-
-
getGroupesOfEtudiant(Etudiant) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet de retrouver les groupes d'un étudiant.
-
-
getId() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Changement
-
-
permet de récupérer l'identifiant du changement (référence interne sans intérêt irl).
-
-
getId() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Etudiant
-
-
permet de récupérer l'identifiant de l'étudiant.
-
-
getId() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
-
-
getId() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.ChangementNP
-
-
permet de récupérer l'identifiant du changement (référence interne sans intérêt irl).
-
-
getId() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.EtudiantNP
-
-
permet de récupérer l'identifiant de l'étudiant.
-
-
getId() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer l'identifiant d'un groupe (référence interne sans intérêt irl).
-
-
getMax() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
-
-
getMax() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer le nombre maximum d'étudiants souhaités dans un groupe.
-
-
getMin() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
-
-
getMin() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer le nombre minimum d'étudiants souhaités dans le groupe.
-
-
getName() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer le nom d'un groupe (utile irl).
-
-
getName() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer le nom d'un groupe (utile irl).
-
-
getNom() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Etudiant
-
-
permet de récupérer
-
-
getNom() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.EtudiantNP
-
-
permet de récupérer
-
-
getPointPoint() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
-
-
getPointPoint() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer le groupe père - un groupe racine devrait retourner lui-même
-
-
getPrenom() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Etudiant
-
-
permet de récupérer
-
-
getPrenom() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.EtudiantNP
-
-
permet de récupérer
-
-
getPromotion() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.AbstractGroupeFactory
-
-
permet de récupérer le Groupe qui contient les étudiants de toute la promotion
-
-
getPromotion() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.AbstractGroupeFactoryNP
-
-
permet de récupérer le Groupe qui contient les étudiants de toute la promotion
-
-
getSize() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer le nombre d'étudiants dans ce groupe.
-
-
getSize() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer le nombre d'étudiants dans ce groupe.
-
-
getSousGroupes() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Potentiellement "vide"
-
-
getSousGroupes() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Potentiellement "vide" - Attention nous renvoyons l'ensemble sans le copier
-
-
getType() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
permet de récupérer la nature du groupe
-
-
getType() - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
permet de récupérer la nature du groupe
-
-
Groupe - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Un groupe
-
-
GroupeNP - Class in fr.iutfbleau.projetIHM2022FI2.MNP
-
-
Un groupe
-
-
GroupeNP(String, int, int) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Nouveau groupe vide de type ROOT sans étudiants, sans sous-Groupe
-
-
GroupeNP(Groupe, String, int, int) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Nouveau groupe vide de type FREE sans étudiants, sans sous-Groupe
-
-
GroupeNP(Groupe) - Constructor for class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Nouveau groupe de type PARTITION dupliquant le groupe passé en paramètre (pour servir de racine à une partition de ce groupe de type FREE passé en paramètre).
-
-
- - - -

M

-
-
monPrint() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Changement
-
 
-
monPrint() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Etudiant
-
 
-
monPrint() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
 
-
MonPrint - Interface in fr.iutfbleau.projetIHM2022FI2.API
-
-
Toutes nos interfaces vont étendre cette interface.
-
-
monPrint() - Method in interface fr.iutfbleau.projetIHM2022FI2.API.MonPrint
-
-
Fonctionne comme ToPrint() sauf car une interface n'a pas le droit de faire un override sur ToPrint().
-
-
- - - -

R

-
-
removeEtudiant(Etudiant) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Enlève un étudiant.
-
-
removeEtudiant(Etudiant) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Enlève un étudiant.
-
-
removeSousGroupe(Groupe) - Method in interface fr.iutfbleau.projetIHM2022FI2.API.Groupe
-
-
Enlève un groupe.
-
-
removeSousGroupe(Groupe) - Method in class fr.iutfbleau.projetIHM2022FI2.MNP.GroupeNP
-
-
Enlève un groupe.
-
-
- - - -

T

-
-
TypeGroupe - Enum in fr.iutfbleau.projetIHM2022FI2.API
-
 
-
- - - -

V

-
-
valueOf(String) - Static method in enum fr.iutfbleau.projetIHM2022FI2.API.TypeGroupe
-
-
Returns the enum constant of this type with the specified name.
-
-
values() - Static method in enum fr.iutfbleau.projetIHM2022FI2.API.TypeGroupe
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
-A C D E F G M R T V 
- -
- - - - - - - -
- - - - diff --git a/java/doc/index.html b/java/doc/index.html deleted file mode 100644 index 707f445..0000000 --- a/java/doc/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - -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/java/doc/overview-frame.html b/java/doc/overview-frame.html deleted file mode 100644 index c74b221..0000000 --- a/java/doc/overview-frame.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - -Overview List - - - - - - - -

 

- - diff --git a/java/doc/overview-summary.html b/java/doc/overview-summary.html deleted file mode 100644 index e816494..0000000 --- a/java/doc/overview-summary.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - -Overview - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - - - - -
Packages 
PackageDescription
fr.iutfbleau.projetIHM2022FI2.API 
fr.iutfbleau.projetIHM2022FI2.MNP 
-
- -
- - - - - - - -
- - - - diff --git a/java/doc/overview-tree.html b/java/doc/overview-tree.html deleted file mode 100644 index 72a9452..0000000 --- a/java/doc/overview-tree.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - -Class Hierarchy - - - - - - - - -
- - - - - - - -
- - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    • -
    -
  • -
-
- -
- - - - - - - -
- - - - diff --git a/java/doc/package-list b/java/doc/package-list deleted file mode 100644 index 8fcbc66..0000000 --- a/java/doc/package-list +++ /dev/null @@ -1,2 +0,0 @@ -fr.iutfbleau.projetIHM2022FI2.API -fr.iutfbleau.projetIHM2022FI2.MNP diff --git a/java/doc/script.js b/java/doc/script.js deleted file mode 100644 index b346356..0000000 --- a/java/doc/script.js +++ /dev/null @@ -1,30 +0,0 @@ -function show(type) -{ - count = 0; - for (var key in methods) { - var row = document.getElementById(key); - if ((methods[key] & type) != 0) { - row.style.display = ''; - row.className = (count++ % 2) ? rowColor : altColor; - } - else - row.style.display = 'none'; - } - updateTabs(type); -} - -function updateTabs(type) -{ - for (var value in tabs) { - var sNode = document.getElementById(tabs[value][0]); - var spanNode = sNode.firstChild; - if (value == type) { - sNode.className = activeTableTab; - spanNode.innerHTML = tabs[value][1]; - } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; - } - } -} diff --git a/java/doc/stylesheet.css b/java/doc/stylesheet.css deleted file mode 100644 index 98055b2..0000000 --- a/java/doc/stylesheet.css +++ /dev/null @@ -1,574 +0,0 @@ -/* Javadoc style sheet */ -/* -Overall document style -*/ - -@import url('resources/fonts/dejavu.css'); - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a:hover, a:focus { - text-decoration:none; - color:#bb7a2a; -} -a:active { - text-decoration:none; - color:#4A6782; -} -a[name] { - color:#353833; -} -a[name]:hover { - text-decoration:none; - color:#353833; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; - font-style:italic; -} -h4 { - font-size:13px; -} -h5 { - font-size:12px; -} -h6 { - font-size:11px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -table tr td dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} -/* -Document title and Copyright styles -*/ -.clear { - clear:both; - height:0px; - overflow:hidden; -} -.aboutLanguage { - float:right; - padding:0px 21px; - font-size:11px; - z-index:200; - margin-top:-9px; -} -.legalCopy { - margin-left:.5em; -} -.bar a, .bar a:link, .bar a:visited, .bar a:active { - color:#FFFFFF; - text-decoration:none; -} -.bar a:hover, .bar a:focus { - color:#bb7a2a; -} -.tab { - background-color:#0066FF; - color:#ffffff; - padding:8px; - width:5em; - font-weight:bold; -} -/* -Navigation bar styles -*/ -.bar { - background-color:#4D7A97; - color:#FFFFFF; - padding:.8em .5em .4em .8em; - height:auto;/*height:1.8em;*/ - font-size:11px; - margin:0; -} -.topNav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.bottomNav { - margin-top:10px; - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.subNav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.subNav div { - clear:left; - float:left; - padding:0 0 5px 6px; - text-transform:uppercase; -} -ul.navList, ul.subNavList { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.navList li{ - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -ul.subNavList li{ - list-style:none; - float:left; -} -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { - color:#FFFFFF; - text-decoration:none; - text-transform:uppercase; -} -.topNav a:hover, .bottomNav a:hover { - text-decoration:none; - color:#bb7a2a; - text-transform:uppercase; -} -.navBarCell1Rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skipNav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* -Page header and footer styles -*/ -.header, .footer { - clear:both; - margin:0 20px; - padding:5px 0 0 0; -} -.indexHeader { - margin:10px; - position:relative; -} -.indexHeader span{ - margin-right:15px; -} -.indexHeader h1 { - font-size:13px; -} -.title { - color:#2c4557; - margin:10px 0; -} -.subTitle { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.footer ul { - margin:20px 0 5px 0; -} -.header ul li, .footer ul li { - list-style:none; - font-size:13px; -} -/* -Heading styles -*/ -div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList ul.blockList li.blockList h3 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList li.blockList h3 { - padding:0; - margin:15px 0; -} -ul.blockList li.blockList h2 { - padding:0px 0 20px 0; -} -/* -Page layout container styles -*/ -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { - clear:both; - padding:10px 20px; - position:relative; -} -.indexContainer { - margin:10px; - position:relative; - font-size:12px; -} -.indexContainer h2 { - font-size:13px; - padding:0 0 3px 0; -} -.indexContainer ul { - margin:0; - padding:0; -} -.indexContainer ul li { - list-style:none; - padding-top:2px; -} -.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { - margin:5px 0 10px 0px; - font-size:14px; - font-family:'DejaVu Sans Mono',monospace; -} -.serializedFormContainer dl.nameValue dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -.serializedFormContainer dl.nameValue dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* -List styles -*/ -ul.horizontal li { - display:inline; - font-size:0.9em; -} -ul.inheritance { - margin:0; - padding:0; -} -ul.inheritance li { - display:inline; - list-style:none; -} -ul.inheritance li ul.inheritance { - margin-left:15px; - padding-left:15px; - padding-top:1px; -} -ul.blockList, ul.blockListLast { - margin:10px 0 10px 0; - padding:0; -} -ul.blockList li.blockList, ul.blockListLast li.blockList { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { - padding:0px 20px 5px 10px; - border:1px solid #ededed; - background-color:#f8f8f8; -} -ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left:0; - padding-left:0; - padding-bottom:15px; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style:none; - border-bottom:none; - padding-bottom:0; -} -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top:0; - margin-bottom:1px; -} -/* -Table styles -*/ -.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { - width:100%; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; -} -.overviewSummary, .memberSummary { - padding:0px; -} -.overviewSummary caption, .memberSummary caption, .typeSummary caption, -.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0px; - padding-top:10px; - padding-left:1px; - margin:0px; - white-space:pre; -} -.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, -.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, -.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, -.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, -.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, -.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, -.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, -.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { - color:#FFFFFF; -} -.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, -.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -.memberSummary caption span.activeTableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#F8981D; - height:16px; -} -.memberSummary caption span.tableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#4D7A97; - height:16px; -} -.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { - padding-top:0px; - padding-left:0px; - padding-right:0px; - background-image:none; - float:none; - display:inline; -} -.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, -.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { - display:none; - width:5px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .activeTableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .tableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - background-color:#4D7A97; - float:left; - -} -.overviewSummary td, .memberSummary td, .typeSummary td, -.useSummary td, .constantsSummary td, .deprecatedSummary td { - text-align:left; - padding:0px 0px 12px 10px; -} -th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, -td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ - vertical-align:top; - padding-right:0px; - padding-top:8px; - padding-bottom:3px; -} -th.colFirst, th.colLast, th.colOne, .constantsSummary th { - background:#dee3e9; - text-align:left; - padding:8px 3px 3px 7px; -} -td.colFirst, th.colFirst { - white-space:nowrap; - font-size:13px; -} -td.colLast, th.colLast { - font-size:13px; -} -td.colOne, th.colOne { - font-size:13px; -} -.overviewSummary td.colFirst, .overviewSummary th.colFirst, -.useSummary td.colFirst, .useSummary th.colFirst, -.overviewSummary td.colOne, .overviewSummary th.colOne, -.memberSummary td.colFirst, .memberSummary th.colFirst, -.memberSummary td.colOne, .memberSummary th.colOne, -.typeSummary td.colFirst{ - width:25%; - vertical-align:top; -} -td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { - font-weight:bold; -} -.tableSubHeadingColor { - background-color:#EEEEFF; -} -.altColor { - background-color:#FFFFFF; -} -.rowColor { - background-color:#EEEEEF; -} -/* -Content styles -*/ -.description pre { - margin-top:0; -} -.deprecatedContent { - margin:0; - padding:10px 0; -} -.docSummary { - padding:0; -} - -ul.blockList ul.blockList ul.blockList li.blockList h3 { - font-style:normal; -} - -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} - -td.colLast div { - padding-top:0px; -} - - -td.colLast a { - padding-bottom:3px; -} -/* -Formatting effect styles -*/ -.sourceLineNo { - color:green; - padding:0 30px 0 0; -} -h1.hidden { - visibility:hidden; - overflow:hidden; - font-size:10px; -} -.block { - display:block; - margin:3px 10px 2px 0px; - color:#474747; -} -.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, -.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, -.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { - font-weight:bold; -} -.deprecationComment, .emphasizedPhrase, .interfaceName { - font-style:italic; -} - -div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, -div.block div.block span.interfaceName { - font-style:normal; -} - -div.contentContainer ul.blockList li.blockList h2{ - padding-bottom:0px; -}