diff --git a/Makefile b/Makefile index 044f5e5..add576d 100644 --- a/Makefile +++ b/Makefile @@ -19,13 +19,13 @@ endif # === Compilation === compile: @echo === Compilation du projet === - javac -encoding UTF-8 -cp "$(LIB_DIR)$(SEP)$(LIB_DIR)/org/mariadb/jdbc" -d $(BUILD_DIR) $(SRC_DIR)/*.java + javac -encoding UTF-8 -cp "$(LIB_DIR)$(SEP)$(LIB)/org/mariadb/jdbc" -d $(BUILD_DIR) $(SRC_DIR)/*.java @echo Compilation terminee # Exécution du programme run: compile @echo === Execution du programme === - java -cp "$(BUILD_DIR);$(LIB)" $(MAIN_CLASS) + java -cp "$(BUILD_DIR)$(SEP)$(LIB)" $(MAIN_CLASS) # === Creation du JAR === jar: compile diff --git a/doc/allclasses-index.html b/doc/allclasses-index.html new file mode 100644 index 0000000..f7ccf95 --- /dev/null +++ b/doc/allclasses-index.html @@ -0,0 +1,185 @@ + + + + +All Classes and Interfaces + + + + + + + + + + + + + + +
+ +
+
+
+
+

All Classes and Interfaces

+
+
+
Classes
+
+
Class
+
Description
+ +
+
La classe BaseDeDonnees fournit les paramètres et méthodes +nécessaires à l’établissement d’une connexion à la base MariaDB.
+
+ +
+
La classe BtnAjouter représente un bouton permettant +d’ouvrir la fenêtre d’ajout d’un nouveau rappel dans l’application Papillon.
+
+ +
+
La classe BtnModifier représente un bouton permettant +de modifier un rappel existant dans l’application Papillon.
+
+ +
+
La classe BtnSupprimer représente un bouton permettant +de supprimer un ou plusieurs rappels dans l’application Papillon.
+
+ +
+
La classe ChoixRang représente une liste déroulante +permettant de filtrer les rappels selon leur niveau de priorité (rang) +dans l’application Papillon.
+
+ +
+
La classe ColorIcon permet d’afficher un petit carré coloré +servant d’icône dans l’interface de l’application Papillon.
+
+ +
+
La classe CouleurList permet d’afficher des couleurs +associées à des thèmes dans les listes déroulantes de l’application Papillon.
+
+ +
+
La classe Crud regroupe les trois boutons principaux +de gestion des rappels dans l’application Papillon : + + Ajouter — pour créer un nouveau rappel, + Supprimer — pour supprimer un ou plusieurs rappels, + Modifier — pour éditer un rappel existant. +
+
+ +
+
La classe FenetreAjout permet d’afficher une fenêtre +dédiée à l’ajout d’un nouveau rappel dans l’application Papillon.
+
+ +
+
La classe FenetreModif permet d’afficher une fenêtre +dédiée à la modification d’un rappel existant dans l’application Papillon.
+
+ +
+
La classe FenetreRappel représente la fenêtre d’affichage +détaillée d’un rappel dans l’application Papillon.
+
+ +
+
La classe GestionAjout gère les boutons de la fenêtre +d’ajout d’un rappel dans l’application Papillon.
+
+ +
+
La classe GestionModif gère les boutons de la fenêtre +de modification d’un rappel dans l’application Papillon.
+
+ +
+
La classe GestionRappel gère les opérations CRUD +(création, lecture, modification, suppression) sur les rappels +associés à l’utilisateur courant.
+
+ +
+
La classe LimiteContenu permet de limiter le nombre +de caractères pouvant être saisis dans un champ de texte Swing.
+
+ +
+
La classe Main représente la fenêtre principale +de l’application Papillon.
+
+ +
+
La classe PanelRappel représente l’affichage graphique +d’un rappel dans l’application Papillon.
+
+ +
+
La classe Rappel représente un rappel utilisateur, +avec un titre, un contenu, un thème et un rang de priorité.
+
+ +
+
La classe RappelBD gère les interactions entre le programme +et la table rappel dans la base de données.
+
+ +
+
La classe Start constitue le point d’entrée principal +de l’application Papillon.
+
+ +
+
La classe UserKey permet de gérer une clé d'identification locale +unique pour un utilisateur du logiciel Papillon.
+
+ +
+
La classe Utilisateur représente un utilisateur unique +du logiciel Papillon, identifié par une clé locale.
+
+ +
+
La classe UtilisateurBD gère la table utilisateur +de la base de données.
+
+
+
+
+
+ + diff --git a/doc/allpackages-index.html b/doc/allpackages-index.html new file mode 100644 index 0000000..029eb40 --- /dev/null +++ b/doc/allpackages-index.html @@ -0,0 +1,63 @@ + + + + +All Packages + + + + + + + + + + + + + + +
+ +
+
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+
+
+
+ + diff --git a/doc/element-list b/doc/element-list new file mode 100644 index 0000000..213411b --- /dev/null +++ b/doc/element-list @@ -0,0 +1 @@ +fr.iutfbleau.papillon diff --git a/doc/fr/iutfbleau/papillon/BaseDeDonnees.html b/doc/fr/iutfbleau/papillon/BaseDeDonnees.html new file mode 100644 index 0000000..5901927 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/BaseDeDonnees.html @@ -0,0 +1,180 @@ + + + + +BaseDeDonnees + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class BaseDeDonnees

+
+
java.lang.Object +
fr.iutfbleau.papillon.BaseDeDonnees
+
+
+
+
+
public class BaseDeDonnees +extends Object
+
La classe BaseDeDonnees fournit les paramètres et méthodes +nécessaires à l’établissement d’une connexion à la base MariaDB. + +

Elle centralise les informations de connexion (URL, utilisateur et mot de passe) +et renvoie un objet Connection pour exécuter les requêtes SQL.

+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      BaseDeDonnees

      +
      +
      public BaseDeDonnees()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getConnexion

      +
      +
      public static Connection getConnexion() + throws SQLException
      +
      Établit une connexion avec la base de données MariaDB.
      +
      +
      Returns:
      +
      un objet Connection actif vers la base
      +
      Throws:
      +
      SQLException - si une erreur survient lors de la connexion
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/BtnAjouter.html b/doc/fr/iutfbleau/papillon/BtnAjouter.html new file mode 100644 index 0000000..5265819 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/BtnAjouter.html @@ -0,0 +1,278 @@ + + + + +BtnAjouter + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class BtnAjouter

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, ItemSelectable, MenuContainer, Serializable, EventListener, Accessible, SwingConstants
+
+
+
+
public class BtnAjouter +extends JButton +implements ActionListener
+
La classe BtnAjouter représente un bouton permettant +d’ouvrir la fenêtre d’ajout d’un nouveau rappel dans l’application Papillon. +

+Lorsqu’un utilisateur clique sur ce bouton, une instance de la fenêtre +FenetreAjout est affichée, tandis que la fenêtre principale est masquée. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      BtnAjouter

      +
      +
      public BtnAjouter(Main main)
      +
      Construit un bouton "Ajouter" associé à la fenêtre principale. +

      +Ce bouton est configuré avec une taille fixe et un écouteur d’action +pour réagir aux clics de l’utilisateur. +

      +
      +
      Parameters:
      +
      main - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Méthode appelée lorsqu’un clic est détecté sur le bouton. +

      +Ouvre une nouvelle fenêtre d’ajout (FenetreAjout), +positionnée au même endroit que la fenêtre principale, puis +masque cette dernière. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action généré par le clic sur le bouton
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/BtnModifier.html b/doc/fr/iutfbleau/papillon/BtnModifier.html new file mode 100644 index 0000000..a657194 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/BtnModifier.html @@ -0,0 +1,270 @@ + + + + +BtnModifier + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class BtnModifier

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, ItemSelectable, MenuContainer, Serializable, EventListener, Accessible, SwingConstants
+
+
+
+
public class BtnModifier +extends JButton +implements ActionListener
+
La classe BtnModifier représente un bouton permettant +de modifier un rappel existant dans l’application Papillon. +

+Lorsqu’un utilisateur clique sur ce bouton, il vérifie qu’un seul rappel +est sélectionné. Si c’est le cas, la fenêtre de modification +(FenetreModif) s’ouvre pour permettre à l’utilisateur +de modifier les informations du rappel choisi. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      BtnModifier

      +
      +
      public BtnModifier(Main main)
      +
      Construit un bouton "Modifier" associé à la fenêtre principale. +

      +Ce bouton est configuré avec une taille fixe et un écouteur d’action +pour réagir aux clics de l’utilisateur. +

      +
      +
      Parameters:
      +
      main - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/BtnSupprimer.html b/doc/fr/iutfbleau/papillon/BtnSupprimer.html new file mode 100644 index 0000000..63560d3 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/BtnSupprimer.html @@ -0,0 +1,279 @@ + + + + +BtnSupprimer + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class BtnSupprimer

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, ItemSelectable, MenuContainer, Serializable, EventListener, Accessible, SwingConstants
+
+
+
+
public class BtnSupprimer +extends JButton +implements ActionListener
+
La classe BtnSupprimer représente un bouton permettant +de supprimer un ou plusieurs rappels dans l’application Papillon. +

+Lorsqu’un utilisateur clique sur ce bouton, une boîte de confirmation +s’affiche afin de valider la suppression. Si l’utilisateur confirme, +les rappels sélectionnés sont supprimés de la liste. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      BtnSupprimer

      +
      +
      public BtnSupprimer(Main main)
      +
      Construit un bouton "Supprimer" associé à la fenêtre principale. +

      +Ce bouton est configuré avec une taille fixe et un écouteur d’action +pour réagir aux clics de l’utilisateur. +

      +
      +
      Parameters:
      +
      main - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Gère l’action effectuée lors d’un clic sur le bouton. +

      +Si aucun rappel n’est sélectionné, un message d’avertissement est affiché. +Sinon, une boîte de dialogue de confirmation s’ouvre avant de procéder +à la suppression des rappels choisis. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action déclenché par un clic
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/ChoixRang.html b/doc/fr/iutfbleau/papillon/ChoixRang.html new file mode 100644 index 0000000..5f34d8d --- /dev/null +++ b/doc/fr/iutfbleau/papillon/ChoixRang.html @@ -0,0 +1,255 @@ + + + + +ChoixRang + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class ChoixRang

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, ItemSelectable, MenuContainer, Serializable, EventListener, Accessible, ListDataListener
+
+
+
+
public class ChoixRang +extends JComboBox<String>
+
La classe ChoixRang représente une liste déroulante +permettant de filtrer les rappels selon leur niveau de priorité (rang) +dans l’application Papillon. +

+L’utilisateur peut sélectionner un rang spécifique ou choisir “Tout” +pour afficher tous les rappels. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ChoixRang

      +
      +
      public ChoixRang()
      +
      Constructeur qui initialise la liste déroulante des rangs. +

      +Par défaut, l’élément sélectionné est “Tout”. +

      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      tirage

      +
      +
      public void tirage(Main main)
      +
      Met à jour l’affichage des rappels en fonction du rang sélectionné.
      +
      +
      Parameters:
      +
      main - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/ColorIcon.html b/doc/fr/iutfbleau/papillon/ColorIcon.html new file mode 100644 index 0000000..80c3ba7 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/ColorIcon.html @@ -0,0 +1,249 @@ + + + + +ColorIcon + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class ColorIcon

+
+
java.lang.Object +
fr.iutfbleau.papillon.ColorIcon
+
+
+
+
All Implemented Interfaces:
+
Icon
+
+
+
+
public class ColorIcon +extends Object +implements Icon
+
La classe ColorIcon permet d’afficher un petit carré coloré +servant d’icône dans l’interface de l’application Papillon. +

+Elle est utilisée notamment pour représenter visuellement un thème de couleur +associé à un rappel ou un élément d’interface. +

+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ColorIcon

      +
      +
      public ColorIcon(Color couleur, + int largeur, + int hauteur)
      +
      Constructeur de l’icône colorée.
      +
      +
      Parameters:
      +
      couleur - la couleur de l’icône
      +
      largeur - la largeur de l’icône
      +
      hauteur - la hauteur de l’icône
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getIconWidth

      +
      +
      public int getIconWidth()
      +
      Renvoie la largeur de l’icône.
      +
      +
      Specified by:
      +
      getIconWidth in interface Icon
      +
      Returns:
      +
      la largeur de l’icône
      +
      +
      +
      +
    • +
    • +
      +

      getIconHeight

      +
      +
      public int getIconHeight()
      +
      Renvoie la hauteur de l’icône.
      +
      +
      Specified by:
      +
      getIconHeight in interface Icon
      +
      Returns:
      +
      la hauteur de l’icône
      +
      +
      +
      +
    • +
    • +
      +

      paintIcon

      +
      +
      public void paintIcon(Component c, + Graphics g, + int x, + int y)
      +
      Dessine l’icône sur le composant spécifié.
      +
      +
      Specified by:
      +
      paintIcon in interface Icon
      +
      Parameters:
      +
      c - le composant sur lequel l’icône est dessinée
      +
      g - le contexte graphique utilisé pour le dessin
      +
      x - la position horizontale du coin supérieur gauche
      +
      y - la position verticale du coin supérieur gauche
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/CouleurList.html b/doc/fr/iutfbleau/papillon/CouleurList.html new file mode 100644 index 0000000..b356b16 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/CouleurList.html @@ -0,0 +1,301 @@ + + + + +CouleurList + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class CouleurList

+
+ +
+
+
All Implemented Interfaces:
+
ImageObserver, MenuContainer, Serializable, Accessible, ListCellRenderer<Object>, SwingConstants
+
+
+
+
public class CouleurList +extends DefaultListCellRenderer
+
La classe CouleurList permet d’afficher des couleurs +associées à des thèmes dans les listes déroulantes de l’application Papillon. +

+Elle agit comme un renderer personnalisé, affichant un petit carré coloré +à côté du nom du thème. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CouleurList

      +
      +
      public CouleurList()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      couleurDe

      +
      +
      public Color couleurDe(String nom)
      +
      Renvoie la couleur correspondant au nom affiché dans le menu déroulant.
      +
      +
      Parameters:
      +
      nom - le nom du thème (ex. : "Bleu", "Rouge", "Vert", etc.)
      +
      Returns:
      +
      la couleur associée au thème, ou blanc par défaut
      +
      +
      +
      +
    • +
    • +
      +

      getListCellRendererComponent

      +
      +
      public JLabel getListCellRendererComponent(JList list, + Object value, + int index, + boolean isSelected, + boolean cellHasFocus)
      +
      Personnalise l’affichage des éléments dans la liste déroulante.
      +
      +
      Specified by:
      +
      getListCellRendererComponent in interface ListCellRenderer<Object>
      +
      Overrides:
      +
      getListCellRendererComponent in class DefaultListCellRenderer
      +
      Parameters:
      +
      list - la liste affichant les éléments
      +
      value - l’élément à afficher
      +
      index - l’indice de l’élément dans la liste
      +
      isSelected - indique si l’élément est sélectionné
      +
      cellHasFocus - indique si l’élément a le focus
      +
      Returns:
      +
      le composant personnalisé pour l’affichage de l’élément
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/Crud.html b/doc/fr/iutfbleau/papillon/Crud.html new file mode 100644 index 0000000..adfea4b --- /dev/null +++ b/doc/fr/iutfbleau/papillon/Crud.html @@ -0,0 +1,188 @@ + + + + +Crud + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class Crud

+
+ +
+
+
All Implemented Interfaces:
+
Serializable, Cloneable, Iterable<JButton>, Collection<JButton>, List<JButton>, RandomAccess, SequencedCollection<JButton>
+
+
+
+
public class Crud +extends ArrayList<JButton>
+
La classe Crud regroupe les trois boutons principaux +de gestion des rappels dans l’application Papillon : +
    +
  • Ajouter — pour créer un nouveau rappel,
  • +
  • Supprimer — pour supprimer un ou plusieurs rappels,
  • +
  • Modifier — pour éditer un rappel existant.
  • +
+

+Cette classe centralise leur création et leur ajout à l’interface. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Crud

      +
      +
      public Crud(Main main)
      +
      Constructeur de la barre d’actions CRUD.
      +
      +
      Parameters:
      +
      main - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/FenetreAjout.html b/doc/fr/iutfbleau/papillon/FenetreAjout.html new file mode 100644 index 0000000..f52c410 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/FenetreAjout.html @@ -0,0 +1,228 @@ + + + + +FenetreAjout + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class FenetreAjout

+
+ +
+
+
All Implemented Interfaces:
+
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants
+
+
+
+
public class FenetreAjout +extends JFrame
+
La classe FenetreAjout permet d’afficher une fenêtre +dédiée à l’ajout d’un nouveau rappel dans l’application Papillon. +

+Elle contient les champs nécessaires à la saisie du titre, du contenu, +de la priorité et du thème du rappel. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      FenetreAjout

      +
      +
      public FenetreAjout(Main parent)
      +
      Constructeur de la fenêtre d’ajout.
      +
      +
      Parameters:
      +
      parent - la fenêtre principale de l’application Papillon
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/FenetreModif.html b/doc/fr/iutfbleau/papillon/FenetreModif.html new file mode 100644 index 0000000..4f6b658 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/FenetreModif.html @@ -0,0 +1,231 @@ + + + + +FenetreModif + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class FenetreModif

+
+ +
+
+
All Implemented Interfaces:
+
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants
+
+
+
+
public class FenetreModif +extends JFrame
+
La classe FenetreModif permet d’afficher une fenêtre +dédiée à la modification d’un rappel existant dans l’application Papillon. +

+Elle reprend les informations du rappel sélectionné et permet à l’utilisateur +de les modifier avant de valider les changements. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      FenetreModif

      +
      +
      public FenetreModif(Main parent, + Rappel rappel)
      +
      Constructeur de la fenêtre de modification.
      +
      +
      Parameters:
      +
      parent - la fenêtre principale de l’application Papillon
      +
      rappel - le rappel à modifier
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/FenetreRappel.html b/doc/fr/iutfbleau/papillon/FenetreRappel.html new file mode 100644 index 0000000..5223ce3 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/FenetreRappel.html @@ -0,0 +1,280 @@ + + + + +FenetreRappel + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class FenetreRappel

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, RootPaneContainer, WindowConstants
+
+
+
+
public class FenetreRappel +extends JFrame +implements ActionListener
+
La classe FenetreRappel représente la fenêtre d’affichage +détaillée d’un rappel dans l’application Papillon. +

+Elle affiche les informations complètes du rappel sélectionné +(titre, contenu, thème, et priorité) et permet à l’utilisateur +de le modifier ou de fermer la fenêtre. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      FenetreRappel

      +
      +
      public FenetreRappel(Rappel r, + Main main)
      +
      Constructeur de la fenêtre d’affichage d’un rappel.
      +
      +
      Parameters:
      +
      r - le rappel à afficher
      +
      main - la fenêtre principale
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Gère les actions effectuées sur les boutons de la fenêtre. +
        +
      • Fermer : ferme la fenêtre actuelle.
      • +
      • Modifier : ouvre la fenêtre de modification du rappel.
      • +
      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action déclenché
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/GestionAjout.html b/doc/fr/iutfbleau/papillon/GestionAjout.html new file mode 100644 index 0000000..559eabd --- /dev/null +++ b/doc/fr/iutfbleau/papillon/GestionAjout.html @@ -0,0 +1,249 @@ + + + + +GestionAjout + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class GestionAjout

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, Serializable, Cloneable, Iterable<JButton>, Collection<JButton>, EventListener, List<JButton>, RandomAccess, SequencedCollection<JButton>
+
+
+
+
public class GestionAjout +extends ArrayList<JButton> +implements ActionListener
+
La classe GestionAjout gère les boutons de la fenêtre +d’ajout d’un rappel dans l’application Papillon. +

+Elle contient les boutons Valider et Annuler, et définit +le comportement associé à chacun d’eux. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      GestionAjout

      +
      +
      public GestionAjout(JFrame f, + Main parent, + JTextField champTitre, + JTextArea champContenu, + JComboBox<Integer> rang, + JComboBox<String> comboTheme)
      +
      Constructeur du gestionnaire de boutons pour la fenêtre d’ajout.
      +
      +
      Parameters:
      +
      f - la fenêtre d’ajout
      +
      parent - la fenêtre principale
      +
      champTitre - le champ de texte pour le titre
      +
      champContenu - la zone de texte pour le contenu
      +
      rang - la liste déroulante de priorité
      +
      comboTheme - la liste déroulante du thème
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Gère les actions effectuées sur les boutons de la fenêtre. +

      +Si l’utilisateur clique sur Annuler, la fenêtre d’ajout est fermée +et la fenêtre principale est réaffichée. +Si l’utilisateur clique sur Valider, un nouveau rappel est créé +et ajouté à la liste principale. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action déclenché par un clic sur un bouton
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/GestionModif.html b/doc/fr/iutfbleau/papillon/GestionModif.html new file mode 100644 index 0000000..c009ec6 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/GestionModif.html @@ -0,0 +1,250 @@ + + + + +GestionModif + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class GestionModif

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, Serializable, Cloneable, Iterable<JButton>, Collection<JButton>, EventListener, List<JButton>, RandomAccess, SequencedCollection<JButton>
+
+
+
+
public class GestionModif +extends ArrayList<JButton> +implements ActionListener
+
La classe GestionModif gère les boutons de la fenêtre +de modification d’un rappel dans l’application Papillon. +

+Elle permet à l’utilisateur de valider ou d’annuler les changements +effectués sur un rappel existant. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      GestionModif

      +
      +
      public GestionModif(JFrame f, + Main parent, + JTextField champTitre, + JTextArea champContenu, + JComboBox<Integer> rang, + JComboBox<String> comboTheme, + Rappel r)
      +
      Constructeur du gestionnaire de boutons pour la fenêtre de modification.
      +
      +
      Parameters:
      +
      f - la fenêtre de modification
      +
      parent - la fenêtre principale
      +
      champTitre - le champ de texte pour le titre
      +
      champContenu - la zone de texte pour le contenu
      +
      rang - la liste déroulante de priorité
      +
      comboTheme - la liste déroulante du thème
      +
      r - le rappel à modifier
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Gère les actions effectuées sur les boutons de la fenêtre. +

      +Si l’utilisateur clique sur Annuler, la fenêtre principale est réaffichée. +Si l’utilisateur clique sur Valider, les changements sont enregistrés. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action déclenché par un bouton
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/GestionRappel.html b/doc/fr/iutfbleau/papillon/GestionRappel.html new file mode 100644 index 0000000..c7cfd50 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/GestionRappel.html @@ -0,0 +1,316 @@ + + + + +GestionRappel + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class GestionRappel

+
+
java.lang.Object +
fr.iutfbleau.papillon.GestionRappel
+
+
+
+
+
public class GestionRappel +extends Object
+
La classe GestionRappel gère les opérations CRUD +(création, lecture, modification, suppression) sur les rappels +associés à l’utilisateur courant. +

+Elle s’appuie sur les classes Rappel, RappelBD, +UserKey et UtilisateurBD pour interagir +avec la base de données. +

+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
    +
    Constructeur de la classe GestionRappel.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    int
    +
    ajouter(String titre, + String contenu, + String theme, + int rang)
    +
    +
    Ajoute un nouveau rappel pour l’utilisateur courant.
    +
    +
    int
    + +
    +
    Renvoie l’identifiant de l’utilisateur courant.
    +
    + + +
    +
    Liste tous les rappels appartenant à l’utilisateur courant.
    +
    +
    int
    +
    modifierParId(int id, + Rappel r)
    +
    +
    Modifie un rappel existant à partir de son identifiant.
    +
    +
    int
    + +
    +
    Supprime un rappel de la base de données selon son identifiant.
    +
    +
    int
    + +
    +
    Supprime tous les rappels appartenant à l’utilisateur courant.
    +
    +
    +
    +
    +
    +

    Methods inherited from class Object

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

    Constructor Details

    +
      +
    • +
      +

      GestionRappel

      +
      +
      public GestionRappel()
      +
      Constructeur de la classe GestionRappel. +

      +Initialise l’identifiant utilisateur en se basant sur la clé locale. +Si aucun utilisateur n’existe encore, il est automatiquement créé +dans la base de données. +

      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      ajouter

      +
      +
      public int ajouter(String titre, + String contenu, + String theme, + int rang) + throws SQLException
      +
      Ajoute un nouveau rappel pour l’utilisateur courant.
      +
      +
      Parameters:
      +
      titre - le titre du rappel
      +
      contenu - le contenu textuel du rappel
      +
      theme - le thème associé au rappel
      +
      rang - la priorité du rappel
      +
      Returns:
      +
      le nombre de lignes affectées ou l’ID du rappel ajouté
      +
      Throws:
      +
      SQLException - si une erreur survient lors de l’ajout
      +
      +
      +
      +
    • +
    • +
      +

      lister

      +
      +
      public List<Rappel> lister() + throws SQLException
      +
      Liste tous les rappels appartenant à l’utilisateur courant.
      +
      +
      Returns:
      +
      la liste des rappels de l’utilisateur
      +
      Throws:
      +
      SQLException - si une erreur de communication avec la base survient
      +
      +
      +
      +
    • +
    • +
      +

      modifierParId

      +
      +
      public int modifierParId(int id, + Rappel r) + throws SQLException
      +
      Modifie un rappel existant à partir de son identifiant.
      +
      +
      Parameters:
      +
      id - l’identifiant du rappel à modifier
      +
      r - l’objet Rappel contenant les nouvelles valeurs
      +
      Returns:
      +
      le nombre de lignes modifiées
      +
      Throws:
      +
      SQLException - si une erreur survient lors de la mise à jour
      +
      +
      +
      +
    • +
    • +
      +

      supprimerParId

      +
      +
      public int supprimerParId(int id) + throws SQLException
      +
      Supprime un rappel de la base de données selon son identifiant.
      +
      +
      Parameters:
      +
      id - l’identifiant du rappel à supprimer
      +
      Returns:
      +
      le nombre de lignes supprimées
      +
      Throws:
      +
      SQLException - si une erreur survient lors de la suppression
      +
      +
      +
      +
    • +
    • +
      +

      viderTousMesRappels

      +
      +
      public int viderTousMesRappels() + throws SQLException
      +
      Supprime tous les rappels appartenant à l’utilisateur courant.
      +
      +
      Returns:
      +
      le nombre de rappels supprimés
      +
      Throws:
      +
      SQLException - si une erreur survient lors de la suppression
      +
      +
      +
      +
    • +
    • +
      +

      getUtilisateurId

      +
      +
      public int getUtilisateurId()
      +
      Renvoie l’identifiant de l’utilisateur courant.
      +
      +
      Returns:
      +
      l’ID utilisateur
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/LimiteContenu.html b/doc/fr/iutfbleau/papillon/LimiteContenu.html new file mode 100644 index 0000000..3e17725 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/LimiteContenu.html @@ -0,0 +1,246 @@ + + + + +LimiteContenu + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class LimiteContenu

+
+ +
+
+
All Implemented Interfaces:
+
Serializable, Document
+
+
+
+
public class LimiteContenu +extends PlainDocument
+
La classe LimiteContenu permet de limiter le nombre +de caractères pouvant être saisis dans un champ de texte Swing. +

+Elle hérite de PlainDocument et empêche toute insertion +dépassant la limite définie. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      LimiteContenu

      +
      +
      public LimiteContenu(int limite)
      +
      Constructeur qui définit la limite de caractères.
      +
      +
      Parameters:
      +
      limite - le nombre maximum de caractères autorisés
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/Main.html b/doc/fr/iutfbleau/papillon/Main.html new file mode 100644 index 0000000..93b857f --- /dev/null +++ b/doc/fr/iutfbleau/papillon/Main.html @@ -0,0 +1,353 @@ + + + + +Main + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class Main

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, RootPaneContainer, WindowConstants
+
+
+
+
public class Main +extends JFrame +implements ActionListener
+
La classe Main représente la fenêtre principale +de l’application Papillon. +

+Elle gère l’affichage des rappels, leur tri, ainsi que les +interactions avec les boutons d’ajout, de suppression et de modification. +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Main

      +
      +
      public Main()
      +
      Constructeur de la fenêtre principale de l’application. +

      +Initialise les composants graphiques, configure la disposition et +charge la liste des rappels au démarrage. +

      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getPanelRpl

      +
      +
      public List<PanelRappel> getPanelRpl()
      +
      Renvoie la liste des panneaux de rappels actuellement affichés.
      +
      +
      Returns:
      +
      une liste de PanelRappel
      +
      +
      +
      +
    • +
    • +
      +

      maj

      +
      +
      public void maj()
      +
      Met à jour la fenêtre principale après une modification +(ajout, suppression ou édition d’un rappel). +

      +Cette méthode recharge le panneau des rappels +et force le recalcul de l’affichage. +

      +
      +
      +
    • +
    • +
      +

      setTrie

      +
      +
      public void setTrie(int rang)
      +
      Applique un tri des rappels selon leur rang de priorité.
      +
      +
      Parameters:
      +
      rang - le niveau de priorité sélectionné dans le menu
      +
      +
      +
      +
    • +
    • +
      +

      getRPanel

      +
      +
      public JPanel getRPanel()
      +
      Renvoie le panneau contenant les rappels.
      +
      +
      Returns:
      +
      le panneau de type JPanel affichant les rappels
      +
      +
      +
      +
    • +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent ea)
      +
      Gère les actions utilisateur sur le menu déroulant de tri. +

      +Réinitialise la liste et applique le tri sélectionné. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      ea - l’événement d’action déclenché
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/PanelRappel.html b/doc/fr/iutfbleau/papillon/PanelRappel.html new file mode 100644 index 0000000..f7c86ea --- /dev/null +++ b/doc/fr/iutfbleau/papillon/PanelRappel.html @@ -0,0 +1,471 @@ + + + + +PanelRappel + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class PanelRappel

+
+ +
+
+
All Implemented Interfaces:
+
ActionListener, MouseListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible
+
+
+
+
public class PanelRappel +extends JPanel +implements ActionListener, MouseListener
+
La classe PanelRappel représente l’affichage graphique +d’un rappel dans l’application Papillon. +

+Chaque panneau contient le titre, un aperçu du contenu, ainsi qu’une +couleur correspondant au thème du rappel. +L’utilisateur peut interagir avec ce panneau (sélection, clic droit, etc.). +

+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      PanelRappel

      +
      +
      public PanelRappel(Rappel r, + Main main)
      +
      Constructeur du panneau associé à un rappel et à la fenêtre principale.
      +
      +
      Parameters:
      +
      r - le rappel à afficher
      +
      main - la fenêtre principale
      +
      +
      +
      +
    • +
    • +
      +

      PanelRappel

      +
      +
      public PanelRappel(Rappel r)
      +
      Constructeur du panneau associé à un rappel sans référence à la fenêtre principale.
      +
      +
      Parameters:
      +
      r - le rappel à afficher
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      createPanel

      +
      +
      public void createPanel(Rappel r)
      +
      Initialise et configure le panneau pour afficher les informations du rappel.
      +
      +
      Parameters:
      +
      r - le rappel à afficher
      +
      +
      +
      +
    • +
    • +
      +

      getSelection

      +
      +
      public boolean getSelection()
      +
      Indique si le panneau est actuellement sélectionné.
      +
      +
      Returns:
      +
      true si le panneau est sélectionné, false sinon
      +
      +
      +
      +
    • +
    • +
      +

      getId

      +
      +
      public int getId()
      +
      Renvoie l’identifiant du rappel affiché.
      +
      +
      Returns:
      +
      l’identifiant unique du rappel
      +
      +
      +
      +
    • +
    • +
      +

      getRappel

      +
      +
      public Rappel getRappel()
      +
      Renvoie le rappel associé à ce panneau.
      +
      +
      Returns:
      +
      le rappel affiché dans ce panneau
      +
      +
      +
      +
    • +
    • +
      +

      actionPerformed

      +
      +
      public void actionPerformed(ActionEvent e)
      +
      Gère les actions déclenchées par les éléments du menu contextuel. +

      +Si l’utilisateur clique sur "Ouvrir", la fenêtre détaillée du rappel est affichée. +

      +
      +
      Specified by:
      +
      actionPerformed in interface ActionListener
      +
      Parameters:
      +
      e - l’événement d’action déclenché
      +
      +
      +
      +
    • +
    • +
      +

      mousePressed

      +
      +
      public void mousePressed(MouseEvent e)
      +
      Gère les clics de souris sur le panneau. +

      +Un clic gauche sélectionne/désélectionne le panneau, +tandis qu’un clic droit affiche le menu contextuel. +

      +
      +
      Specified by:
      +
      mousePressed in interface MouseListener
      +
      Parameters:
      +
      e - l’événement de souris détecté
      +
      +
      +
      +
    • +
    • +
      +

      mouseReleased

      +
      +
      public void mouseReleased(MouseEvent e)
      +
      Gère la libération du clic de souris. +

      +Si le clic est un clic droit, le menu contextuel s’affiche. +

      +
      +
      Specified by:
      +
      mouseReleased in interface MouseListener
      +
      Parameters:
      +
      e - l’événement de souris
      +
      +
      +
      +
    • +
    • +
      +

      mouseClicked

      +
      +
      public void mouseClicked(MouseEvent e)
      +
      Gère les clics simples ou doubles sur le panneau. +

      +Un double clic gauche ouvre la fenêtre de rappel complète. +

      +
      +
      Specified by:
      +
      mouseClicked in interface MouseListener
      +
      Parameters:
      +
      e - l’événement de souris
      +
      +
      +
      +
    • +
    • +
      +

      mouseEntered

      +
      +
      public void mouseEntered(MouseEvent e)
      +
      Change l’apparence du panneau lorsque la souris entre dans sa zone.
      +
      +
      Specified by:
      +
      mouseEntered in interface MouseListener
      +
      Parameters:
      +
      e - l’événement de souris
      +
      +
      +
      +
    • +
    • +
      +

      mouseExited

      +
      +
      public void mouseExited(MouseEvent e)
      +
      Restaure la bordure du panneau lorsque la souris quitte sa zone.
      +
      +
      Specified by:
      +
      mouseExited in interface MouseListener
      +
      Parameters:
      +
      e - l’événement de souris
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/Rappel.html b/doc/fr/iutfbleau/papillon/Rappel.html new file mode 100644 index 0000000..a1e9563 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/Rappel.html @@ -0,0 +1,375 @@ + + + + +Rappel + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class Rappel

+
+
java.lang.Object +
fr.iutfbleau.papillon.Rappel
+
+
+
+
+
public class Rappel +extends Object
+
La classe Rappel représente un rappel utilisateur, +avec un titre, un contenu, un thème et un rang de priorité.
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Rappel

      +
      +
      public Rappel()
      +
      Constructeur vide (utilisé notamment pour la lecture SQL).
      +
      +
      +
    • +
    • +
      +

      Rappel

      +
      +
      public Rappel(String titre, + String contenu, + String theme, + int rang)
      +
      Constructeur d’un nouveau rappel sans identifiant.
      +
      +
      Parameters:
      +
      titre - le titre du rappel
      +
      contenu - le contenu ou la description
      +
      theme - la catégorie ou le thème du rappel
      +
      rang - la priorité ou l’ordre d’affichage
      +
      +
      +
      +
    • +
    • +
      +

      Rappel

      +
      +
      public Rappel(int id, + String titre, + String contenu, + String theme, + int rang)
      +
      Constructeur complet avec identifiant.
      +
      +
      Parameters:
      +
      id - l’identifiant du rappel
      +
      titre - le titre du rappel
      +
      contenu - le contenu
      +
      theme - le thème
      +
      rang - le rang de priorité
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getId

      +
      +
      public int getId()
      +
      +
      Returns:
      +
      l’identifiant du rappel
      +
      +
      +
      +
    • +
    • +
      +

      setId

      +
      +
      public void setId(int id)
      +
      +
      Parameters:
      +
      id - définit l’identifiant du rappel
      +
      +
      +
      +
    • +
    • +
      +

      getTitre

      +
      +
      public String getTitre()
      +
      +
      Returns:
      +
      le titre du rappel
      +
      +
      +
      +
    • +
    • +
      +

      setTitre

      +
      +
      public void setTitre(String titre)
      +
      +
      Parameters:
      +
      titre - définit le titre du rappel
      +
      +
      +
      +
    • +
    • +
      +

      getContenu

      +
      +
      public String getContenu()
      +
      +
      Returns:
      +
      le contenu du rappel
      +
      +
      +
      +
    • +
    • +
      +

      setContenu

      +
      +
      public void setContenu(String contenu)
      +
      +
      Parameters:
      +
      contenu - définit le contenu du rappel
      +
      +
      +
      +
    • +
    • +
      +

      getTheme

      +
      +
      public String getTheme()
      +
      +
      Returns:
      +
      le thème du rappel
      +
      +
      +
      +
    • +
    • +
      +

      setTheme

      +
      +
      public void setTheme(String theme)
      +
      +
      Parameters:
      +
      theme - définit le thème du rappel
      +
      +
      +
      +
    • +
    • +
      +

      getRang

      +
      +
      public int getRang()
      +
      +
      Returns:
      +
      le rang de priorité du rappel
      +
      +
      +
      +
    • +
    • +
      +

      setRang

      +
      +
      public void setRang(int rang)
      +
      +
      Parameters:
      +
      rang - définit le rang de priorité du rappel
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/RappelBD.html b/doc/fr/iutfbleau/papillon/RappelBD.html new file mode 100644 index 0000000..6678248 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/RappelBD.html @@ -0,0 +1,291 @@ + + + + +RappelBD + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class RappelBD

+
+
java.lang.Object +
fr.iutfbleau.papillon.RappelBD
+
+
+
+
+
public class RappelBD +extends Object
+
La classe RappelBD gère les interactions entre le programme +et la table rappel dans la base de données. +

+Elle permet d'ajouter, de modifier, de supprimer et de lister les rappels +associés à un utilisateur spécifique à travers son identifiant (utilisateur_id). +

+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    protected static int
    +
    ajouter(Rappel r, + int utilisateurId)
    +
    +
    Ajoute un nouveau rappel dans la base de données pour un utilisateur donné.
    +
    +
    protected static List<Rappel>
    +
    listerParUtilisateur(int utilisateurId)
    +
    +
    Récupère la liste complète des rappels appartenant à un utilisateur.
    +
    +
    protected static int
    +
    modifier(int id, + Rappel r, + int utilisateurId)
    +
    +
    Modifie un rappel existant dans la base de données.
    +
    +
    protected static int
    +
    supprimer(int id, + int utilisateurId)
    +
    +
    Supprime un rappel spécifique appartenant à un utilisateur.
    +
    +
    protected static int
    +
    supprimerToutPourUtilisateur(int utilisateurId)
    +
    +
    Supprime tous les rappels appartenant à un utilisateur spécifique.
    +
    +
    +
    +
    +
    +

    Methods inherited from class Object

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

    Constructor Details

    +
      +
    • +
      +

      RappelBD

      +
      +
      public RappelBD()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      ajouter

      +
      +
      protected static int ajouter(Rappel r, + int utilisateurId) + throws SQLException
      +
      Ajoute un nouveau rappel dans la base de données pour un utilisateur donné.
      +
      +
      Parameters:
      +
      r - l'objet Rappel à insérer dans la base
      +
      utilisateurId - l'identifiant de l'utilisateur propriétaire du rappel
      +
      Returns:
      +
      l'identifiant du rappel nouvellement inséré, ou -1 en cas d'erreur
      +
      Throws:
      +
      SQLException - si une erreur survient lors de la communication avec la base
      +
      +
      +
      +
    • +
    • +
      +

      listerParUtilisateur

      +
      +
      protected static List<Rappel> listerParUtilisateur(int utilisateurId) + throws SQLException
      +
      Récupère la liste complète des rappels appartenant à un utilisateur.
      +
      +
      Parameters:
      +
      utilisateurId - l'identifiant de l'utilisateur
      +
      Returns:
      +
      une liste d'objets Rappel appartenant à cet utilisateur
      +
      Throws:
      +
      SQLException - si une erreur SQL survient lors de l'exécution
      +
      +
      +
      +
    • +
    • +
      +

      modifier

      +
      +
      protected static int modifier(int id, + Rappel r, + int utilisateurId) + throws SQLException
      +
      Modifie un rappel existant dans la base de données.
      +
      +
      Parameters:
      +
      id - l'identifiant du rappel à modifier
      +
      r - l'objet Rappel contenant les nouvelles données
      +
      utilisateurId - l'identifiant de l'utilisateur propriétaire du rappel
      +
      Returns:
      +
      le nombre de lignes modifiées (0 si aucun rappel n'a été trouvé)
      +
      Throws:
      +
      SQLException - si une erreur SQL survient
      +
      +
      +
      +
    • +
    • +
      +

      supprimer

      +
      +
      protected static int supprimer(int id, + int utilisateurId) + throws SQLException
      +
      Supprime un rappel spécifique appartenant à un utilisateur.
      +
      +
      Parameters:
      +
      id - l'identifiant du rappel à supprimer
      +
      utilisateurId - l'identifiant de l'utilisateur propriétaire
      +
      Returns:
      +
      le nombre de lignes supprimées (0 si aucun rappel correspondant)
      +
      Throws:
      +
      SQLException - si une erreur SQL survient
      +
      +
      +
      +
    • +
    • +
      +

      supprimerToutPourUtilisateur

      +
      +
      protected static int supprimerToutPourUtilisateur(int utilisateurId) + throws SQLException
      +
      Supprime tous les rappels appartenant à un utilisateur spécifique.
      +
      +
      Parameters:
      +
      utilisateurId - l'identifiant de l'utilisateur dont les rappels doivent être supprimés
      +
      Returns:
      +
      le nombre total de lignes supprimées
      +
      Throws:
      +
      SQLException - si une erreur SQL survient
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/Start.html b/doc/fr/iutfbleau/papillon/Start.html new file mode 100644 index 0000000..8056189 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/Start.html @@ -0,0 +1,182 @@ + + + + +Start + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class Start

+
+
java.lang.Object +
fr.iutfbleau.papillon.Start
+
+
+
+
+
public class Start +extends Object
+
La classe Start constitue le point d’entrée principal +de l’application Papillon. +

+Elle initialise la fenêtre principale et lance l’interface graphique +de l’application. +

+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Start

      +
      +
      public Start()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      +
      public static void main(String[] args)
      +
      Méthode principale exécutée au démarrage du programme. +

      +Crée une instance de la fenêtre principale (Main) +et l’affiche à l’écran. +

      +
      +
      Parameters:
      +
      args - les arguments passés en ligne de commande (non utilisés)
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/UserKey.html b/doc/fr/iutfbleau/papillon/UserKey.html new file mode 100644 index 0000000..7acab60 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/UserKey.html @@ -0,0 +1,192 @@ + + + + +UserKey + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class UserKey

+
+
java.lang.Object +
fr.iutfbleau.papillon.UserKey
+
+
+
+
+
public class UserKey +extends Object
+
La classe UserKey permet de gérer une clé d'identification locale +unique pour un utilisateur du logiciel Papillon. + +

+Cette clé est stockée dans un fichier caché nommé .papillon_id +dans le répertoire personnel de l'utilisateur. +Elle sert à identifier l'utilisateur sans avoir besoin de système de connexion +ou d'authentification centralisée. +

+ +

+Lors du premier lancement du programme, si le fichier n’existe pas ou est vide, +une clé unique (UUID) est automatiquement générée, enregistrée dans ce fichier +et réutilisée pour les prochaines exécutions. +

+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      UserKey

      +
      +
      public UserKey()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      lireOuCreerCle

      +
      +
      protected static String lireOuCreerCle()
      +
      Lit la clé stockée dans le fichier ~/.papillon_id +ou en génère une nouvelle si le fichier n'existe pas ou est vide. + +

      Cette méthode est utilisée par GestionRappel pour associer +chaque utilisateur à ses données locales.

      +
      +
      Returns:
      +
      une chaîne de caractères représentant la clé unique de l'utilisateur
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/Utilisateur.html b/doc/fr/iutfbleau/papillon/Utilisateur.html new file mode 100644 index 0000000..3e818e7 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/Utilisateur.html @@ -0,0 +1,265 @@ + + + + +Utilisateur + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class Utilisateur

+
+
java.lang.Object +
fr.iutfbleau.papillon.Utilisateur
+
+
+
+
+
public class Utilisateur +extends Object
+
La classe Utilisateur représente un utilisateur unique +du logiciel Papillon, identifié par une clé locale.
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Utilisateur

      +
      +
      public Utilisateur(int id, + String cle)
      +
      Constructeur complet d’un utilisateur.
      +
      +
      Parameters:
      +
      id - l’identifiant de l’utilisateur
      +
      cle - la clé unique d’identification
      +
      +
      +
      +
    • +
    • +
      +

      Utilisateur

      +
      +
      public Utilisateur(String cle)
      +
      Constructeur d’un utilisateur à partir de sa clé uniquement.
      +
      +
      Parameters:
      +
      cle - la clé unique d’identification
      +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getId

      +
      +
      public int getId()
      +
      +
      Returns:
      +
      l’identifiant de l’utilisateur
      +
      +
      +
      +
    • +
    • +
      +

      setId

      +
      +
      public void setId(int id)
      +
      +
      Parameters:
      +
      id - définit l’identifiant de l’utilisateur
      +
      +
      +
      +
    • +
    • +
      +

      getCle

      +
      +
      public String getCle()
      +
      +
      Returns:
      +
      la clé unique de l’utilisateur
      +
      +
      +
      +
    • +
    • +
      +

      setCle

      +
      +
      public void setCle(String cle)
      +
      +
      Parameters:
      +
      cle - définit la clé unique de l’utilisateur
      +
      +
      +
      +
    • +
    • +
      +

      toString

      +
      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      Returns:
      +
      une représentation textuelle de l’utilisateur
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/UtilisateurBD.html b/doc/fr/iutfbleau/papillon/UtilisateurBD.html new file mode 100644 index 0000000..154e3d4 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/UtilisateurBD.html @@ -0,0 +1,205 @@ + + + + +UtilisateurBD + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+

Class UtilisateurBD

+
+
java.lang.Object +
fr.iutfbleau.papillon.UtilisateurBD
+
+
+
+
+
public class UtilisateurBD +extends Object
+
La classe UtilisateurBD gère la table utilisateur +de la base de données. +

Elle permet de créer ou de récupérer un utilisateur à partir d’une clé locale, +et de lire un utilisateur complet via sa clé.

+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      UtilisateurBD

      +
      +
      public UtilisateurBD()
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getOrCreateIdByKey

      +
      +
      public static int getOrCreateIdByKey(String cle) + throws SQLException
      +
      Récupère ou crée un utilisateur en fonction de sa clé unique.
      +
      +
      Parameters:
      +
      cle - la clé unique associée à l’utilisateur
      +
      Returns:
      +
      l’identifiant de l’utilisateur correspondant
      +
      Throws:
      +
      SQLException - si une erreur SQL survient
      +
      +
      +
      +
    • +
    • +
      +

      findByKey

      +
      +
      public static Utilisateur findByKey(String cle) + throws SQLException
      +
      Récupère un utilisateur complet à partir de sa clé.
      +
      +
      Parameters:
      +
      cle - la clé unique de l’utilisateur
      +
      Returns:
      +
      un objet Utilisateur si trouvé, sinon null
      +
      Throws:
      +
      SQLException - si une erreur SQL survient
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+ + diff --git a/doc/fr/iutfbleau/papillon/package-summary.html b/doc/fr/iutfbleau/papillon/package-summary.html new file mode 100644 index 0000000..41ac2b4 --- /dev/null +++ b/doc/fr/iutfbleau/papillon/package-summary.html @@ -0,0 +1,204 @@ + + + + +fr.iutfbleau.papillon + + + + + + + + + + + + + + +
+ +
+
+ +
+
+

Package fr.iutfbleau.papillon

+
+
+
+
package fr.iutfbleau.papillon
+
+
+
    +
  • +
    +
    Classes
    +
    +
    Class
    +
    Description
    + +
    +
    La classe BaseDeDonnees fournit les paramètres et méthodes +nécessaires à l’établissement d’une connexion à la base MariaDB.
    +
    + +
    +
    La classe BtnAjouter représente un bouton permettant +d’ouvrir la fenêtre d’ajout d’un nouveau rappel dans l’application Papillon.
    +
    + +
    +
    La classe BtnModifier représente un bouton permettant +de modifier un rappel existant dans l’application Papillon.
    +
    + +
    +
    La classe BtnSupprimer représente un bouton permettant +de supprimer un ou plusieurs rappels dans l’application Papillon.
    +
    + +
    +
    La classe ChoixRang représente une liste déroulante +permettant de filtrer les rappels selon leur niveau de priorité (rang) +dans l’application Papillon.
    +
    + +
    +
    La classe ColorIcon permet d’afficher un petit carré coloré +servant d’icône dans l’interface de l’application Papillon.
    +
    + +
    +
    La classe CouleurList permet d’afficher des couleurs +associées à des thèmes dans les listes déroulantes de l’application Papillon.
    +
    + +
    +
    La classe Crud regroupe les trois boutons principaux +de gestion des rappels dans l’application Papillon : + + Ajouter — pour créer un nouveau rappel, + Supprimer — pour supprimer un ou plusieurs rappels, + Modifier — pour éditer un rappel existant. +
    +
    + +
    +
    La classe FenetreAjout permet d’afficher une fenêtre +dédiée à l’ajout d’un nouveau rappel dans l’application Papillon.
    +
    + +
    +
    La classe FenetreModif permet d’afficher une fenêtre +dédiée à la modification d’un rappel existant dans l’application Papillon.
    +
    + +
    +
    La classe FenetreRappel représente la fenêtre d’affichage +détaillée d’un rappel dans l’application Papillon.
    +
    + +
    +
    La classe GestionAjout gère les boutons de la fenêtre +d’ajout d’un rappel dans l’application Papillon.
    +
    + +
    +
    La classe GestionModif gère les boutons de la fenêtre +de modification d’un rappel dans l’application Papillon.
    +
    + +
    +
    La classe GestionRappel gère les opérations CRUD +(création, lecture, modification, suppression) sur les rappels +associés à l’utilisateur courant.
    +
    + +
    +
    La classe LimiteContenu permet de limiter le nombre +de caractères pouvant être saisis dans un champ de texte Swing.
    +
    + +
    +
    La classe Main représente la fenêtre principale +de l’application Papillon.
    +
    + +
    +
    La classe PanelRappel représente l’affichage graphique +d’un rappel dans l’application Papillon.
    +
    + +
    +
    La classe Rappel représente un rappel utilisateur, +avec un titre, un contenu, un thème et un rang de priorité.
    +
    + +
    +
    La classe RappelBD gère les interactions entre le programme +et la table rappel dans la base de données.
    +
    + +
    +
    La classe Start constitue le point d’entrée principal +de l’application Papillon.
    +
    + +
    +
    La classe UserKey permet de gérer une clé d'identification locale +unique pour un utilisateur du logiciel Papillon.
    +
    + +
    +
    La classe Utilisateur représente un utilisateur unique +du logiciel Papillon, identifié par une clé locale.
    +
    + +
    +
    La classe UtilisateurBD gère la table utilisateur +de la base de données.
    +
    +
    +
    +
  • +
+
+
+
+ + diff --git a/doc/fr/iutfbleau/papillon/package-tree.html b/doc/fr/iutfbleau/papillon/package-tree.html new file mode 100644 index 0000000..611824e --- /dev/null +++ b/doc/fr/iutfbleau/papillon/package-tree.html @@ -0,0 +1,158 @@ + + + + +fr.iutfbleau.papillon Class Hierarchy + + + + + + + + + + + + + + +
+ +
+
+
+
+

Hierarchy For Package fr.iutfbleau.papillon

+
+
+

Class Hierarchy

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

JavaDoc Help

+
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+

Keyboard Navigation

+

Documentation pages provide keyboard shortcuts to facilitate access to common navigation tasks.

+
    +
  • Type +/ + to access the search input field in any page.
  • +
  • Type +. + to access the filter input field in the sidebar of class pages.
  • +
  • Type +Esc + to clear the input and release keyboard focus in any input field.
  • +
  • Type +Tab +/ + +/ + + to select list items after entering a search term in a search or filter input field.
  • +
  • Type + +/ + + to switch between tabs in tabbed summary tables.
  • +
+
+
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enum Classes
  • +
  • Exception Classes
  • +
  • Annotation Interfaces
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

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.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

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. Classes are organized by inheritance structure starting with java.lang.Object. 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 on TREE displays the hierarchy for only that package.
  • +
+
+
+

Serialized Form

+

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use 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.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+
+

Release Details

+

The details for each module, package, class or interface normally include the release in which the declaration was introduced.

+

When a member is added after the initial introduction of the enclosing class or interface, the details of the member include the release in which it was introduced.

+
+
+This help file applies to API documentation generated by the standard doclet.
+
+ + diff --git a/doc/index-all.html b/doc/index-all.html new file mode 100644 index 0000000..5b053c4 --- /dev/null +++ b/doc/index-all.html @@ -0,0 +1,525 @@ + + + + +Index + + + + + + + + + + + + + + +
+ +
+
+
+
+

Index

+
+A B C F G I L M P R S T U V 
All Classes and Interfaces|All Packages|Serialized Form +

A

+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.BtnAjouter
+
+
Méthode appelée lorsqu’un clic est détecté sur le bouton.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.BtnModifier
+
 
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.BtnSupprimer
+
+
Gère l’action effectuée lors d’un clic sur le bouton.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.FenetreRappel
+
+
Gère les actions effectuées sur les boutons de la fenêtre.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.GestionAjout
+
+
Gère les actions effectuées sur les boutons de la fenêtre.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.GestionModif
+
+
Gère les actions effectuées sur les boutons de la fenêtre.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.Main
+
+
Gère les actions utilisateur sur le menu déroulant de tri.
+
+
actionPerformed(ActionEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Gère les actions déclenchées par les éléments du menu contextuel.
+
+
ajouter(Rappel, int) - Static method in class fr.iutfbleau.papillon.RappelBD
+
+
Ajoute un nouveau rappel dans la base de données pour un utilisateur donné.
+
+
ajouter(String, String, String, int) - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Ajoute un nouveau rappel pour l’utilisateur courant.
+
+
+

B

+
+
BaseDeDonnees - Class in fr.iutfbleau.papillon
+
+
La classe BaseDeDonnees fournit les paramètres et méthodes +nécessaires à l’établissement d’une connexion à la base MariaDB.
+
+
BaseDeDonnees() - Constructor for class fr.iutfbleau.papillon.BaseDeDonnees
+
 
+
BtnAjouter - Class in fr.iutfbleau.papillon
+
+
La classe BtnAjouter représente un bouton permettant +d’ouvrir la fenêtre d’ajout d’un nouveau rappel dans l’application Papillon.
+
+
BtnAjouter(Main) - Constructor for class fr.iutfbleau.papillon.BtnAjouter
+
+
Construit un bouton "Ajouter" associé à la fenêtre principale.
+
+
BtnModifier - Class in fr.iutfbleau.papillon
+
+
La classe BtnModifier représente un bouton permettant +de modifier un rappel existant dans l’application Papillon.
+
+
BtnModifier(Main) - Constructor for class fr.iutfbleau.papillon.BtnModifier
+
+
Construit un bouton "Modifier" associé à la fenêtre principale.
+
+
BtnSupprimer - Class in fr.iutfbleau.papillon
+
+
La classe BtnSupprimer représente un bouton permettant +de supprimer un ou plusieurs rappels dans l’application Papillon.
+
+
BtnSupprimer(Main) - Constructor for class fr.iutfbleau.papillon.BtnSupprimer
+
+
Construit un bouton "Supprimer" associé à la fenêtre principale.
+
+
+

C

+
+
ChoixRang - Class in fr.iutfbleau.papillon
+
+
La classe ChoixRang représente une liste déroulante +permettant de filtrer les rappels selon leur niveau de priorité (rang) +dans l’application Papillon.
+
+
ChoixRang() - Constructor for class fr.iutfbleau.papillon.ChoixRang
+
+
Constructeur qui initialise la liste déroulante des rangs.
+
+
ColorIcon - Class in fr.iutfbleau.papillon
+
+
La classe ColorIcon permet d’afficher un petit carré coloré +servant d’icône dans l’interface de l’application Papillon.
+
+
ColorIcon(Color, int, int) - Constructor for class fr.iutfbleau.papillon.ColorIcon
+
+
Constructeur de l’icône colorée.
+
+
couleurDe(String) - Method in class fr.iutfbleau.papillon.CouleurList
+
+
Renvoie la couleur correspondant au nom affiché dans le menu déroulant.
+
+
CouleurList - Class in fr.iutfbleau.papillon
+
+
La classe CouleurList permet d’afficher des couleurs +associées à des thèmes dans les listes déroulantes de l’application Papillon.
+
+
CouleurList() - Constructor for class fr.iutfbleau.papillon.CouleurList
+
 
+
createPanel(Rappel) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Initialise et configure le panneau pour afficher les informations du rappel.
+
+
Crud - Class in fr.iutfbleau.papillon
+
+
La classe Crud regroupe les trois boutons principaux +de gestion des rappels dans l’application Papillon : + + Ajouter — pour créer un nouveau rappel, + Supprimer — pour supprimer un ou plusieurs rappels, + Modifier — pour éditer un rappel existant. +
+
+
Crud(Main) - Constructor for class fr.iutfbleau.papillon.Crud
+
+
Constructeur de la barre d’actions CRUD.
+
+
+

F

+
+
FenetreAjout - Class in fr.iutfbleau.papillon
+
+
La classe FenetreAjout permet d’afficher une fenêtre +dédiée à l’ajout d’un nouveau rappel dans l’application Papillon.
+
+
FenetreAjout(Main) - Constructor for class fr.iutfbleau.papillon.FenetreAjout
+
+
Constructeur de la fenêtre d’ajout.
+
+
FenetreModif - Class in fr.iutfbleau.papillon
+
+
La classe FenetreModif permet d’afficher une fenêtre +dédiée à la modification d’un rappel existant dans l’application Papillon.
+
+
FenetreModif(Main, Rappel) - Constructor for class fr.iutfbleau.papillon.FenetreModif
+
+
Constructeur de la fenêtre de modification.
+
+
FenetreRappel - Class in fr.iutfbleau.papillon
+
+
La classe FenetreRappel représente la fenêtre d’affichage +détaillée d’un rappel dans l’application Papillon.
+
+
FenetreRappel(Rappel, Main) - Constructor for class fr.iutfbleau.papillon.FenetreRappel
+
+
Constructeur de la fenêtre d’affichage d’un rappel.
+
+
findByKey(String) - Static method in class fr.iutfbleau.papillon.UtilisateurBD
+
+
Récupère un utilisateur complet à partir de sa clé.
+
+
fr.iutfbleau.papillon - package fr.iutfbleau.papillon
+
 
+
+

G

+
+
GestionAjout - Class in fr.iutfbleau.papillon
+
+
La classe GestionAjout gère les boutons de la fenêtre +d’ajout d’un rappel dans l’application Papillon.
+
+
GestionAjout(JFrame, Main, JTextField, JTextArea, JComboBox, JComboBox) - Constructor for class fr.iutfbleau.papillon.GestionAjout
+
+
Constructeur du gestionnaire de boutons pour la fenêtre d’ajout.
+
+
GestionModif - Class in fr.iutfbleau.papillon
+
+
La classe GestionModif gère les boutons de la fenêtre +de modification d’un rappel dans l’application Papillon.
+
+
GestionModif(JFrame, Main, JTextField, JTextArea, JComboBox, JComboBox, Rappel) - Constructor for class fr.iutfbleau.papillon.GestionModif
+
+
Constructeur du gestionnaire de boutons pour la fenêtre de modification.
+
+
GestionRappel - Class in fr.iutfbleau.papillon
+
+
La classe GestionRappel gère les opérations CRUD +(création, lecture, modification, suppression) sur les rappels +associés à l’utilisateur courant.
+
+
GestionRappel() - Constructor for class fr.iutfbleau.papillon.GestionRappel
+
+
Constructeur de la classe GestionRappel.
+
+
getCle() - Method in class fr.iutfbleau.papillon.Utilisateur
+
 
+
getConnexion() - Static method in class fr.iutfbleau.papillon.BaseDeDonnees
+
+
Établit une connexion avec la base de données MariaDB.
+
+
getContenu() - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
getIconHeight() - Method in class fr.iutfbleau.papillon.ColorIcon
+
+
Renvoie la hauteur de l’icône.
+
+
getIconWidth() - Method in class fr.iutfbleau.papillon.ColorIcon
+
+
Renvoie la largeur de l’icône.
+
+
getId() - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Renvoie l’identifiant du rappel affiché.
+
+
getId() - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
getId() - Method in class fr.iutfbleau.papillon.Utilisateur
+
 
+
getListCellRendererComponent(JList, Object, int, boolean, boolean) - Method in class fr.iutfbleau.papillon.CouleurList
+
+
Personnalise l’affichage des éléments dans la liste déroulante.
+
+
getOrCreateIdByKey(String) - Static method in class fr.iutfbleau.papillon.UtilisateurBD
+
+
Récupère ou crée un utilisateur en fonction de sa clé unique.
+
+
getPanelRpl() - Method in class fr.iutfbleau.papillon.Main
+
+
Renvoie la liste des panneaux de rappels actuellement affichés.
+
+
getRang() - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
getRappel() - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Renvoie le rappel associé à ce panneau.
+
+
getRPanel() - Method in class fr.iutfbleau.papillon.Main
+
+
Renvoie le panneau contenant les rappels.
+
+
getSelection() - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Indique si le panneau est actuellement sélectionné.
+
+
getTheme() - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
getTitre() - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
getUtilisateurId() - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Renvoie l’identifiant de l’utilisateur courant.
+
+
+

I

+
+
insertString(int, String, AttributeSet) - Method in class fr.iutfbleau.papillon.LimiteContenu
+
+
Insère une chaîne dans le document si elle ne dépasse pas la limite autorisée.
+
+
+

L

+
+
LimiteContenu - Class in fr.iutfbleau.papillon
+
+
La classe LimiteContenu permet de limiter le nombre +de caractères pouvant être saisis dans un champ de texte Swing.
+
+
LimiteContenu(int) - Constructor for class fr.iutfbleau.papillon.LimiteContenu
+
+
Constructeur qui définit la limite de caractères.
+
+
lireOuCreerCle() - Static method in class fr.iutfbleau.papillon.UserKey
+
+
Lit la clé stockée dans le fichier ~/.papillon_id +ou en génère une nouvelle si le fichier n'existe pas ou est vide.
+
+
lister() - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Liste tous les rappels appartenant à l’utilisateur courant.
+
+
listerParUtilisateur(int) - Static method in class fr.iutfbleau.papillon.RappelBD
+
+
Récupère la liste complète des rappels appartenant à un utilisateur.
+
+
+

M

+
+
main(String[]) - Static method in class fr.iutfbleau.papillon.Start
+
+
Méthode principale exécutée au démarrage du programme.
+
+
Main - Class in fr.iutfbleau.papillon
+
+
La classe Main représente la fenêtre principale +de l’application Papillon.
+
+
Main() - Constructor for class fr.iutfbleau.papillon.Main
+
+
Constructeur de la fenêtre principale de l’application.
+
+
maj() - Method in class fr.iutfbleau.papillon.Main
+
+
Met à jour la fenêtre principale après une modification +(ajout, suppression ou édition d’un rappel).
+
+
modifier(int, Rappel, int) - Static method in class fr.iutfbleau.papillon.RappelBD
+
+
Modifie un rappel existant dans la base de données.
+
+
modifierParId(int, Rappel) - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Modifie un rappel existant à partir de son identifiant.
+
+
mouseClicked(MouseEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Gère les clics simples ou doubles sur le panneau.
+
+
mouseEntered(MouseEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Change l’apparence du panneau lorsque la souris entre dans sa zone.
+
+
mouseExited(MouseEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Restaure la bordure du panneau lorsque la souris quitte sa zone.
+
+
mousePressed(MouseEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Gère les clics de souris sur le panneau.
+
+
mouseReleased(MouseEvent) - Method in class fr.iutfbleau.papillon.PanelRappel
+
+
Gère la libération du clic de souris.
+
+
+

P

+
+
paintIcon(Component, Graphics, int, int) - Method in class fr.iutfbleau.papillon.ColorIcon
+
+
Dessine l’icône sur le composant spécifié.
+
+
PanelRappel - Class in fr.iutfbleau.papillon
+
+
La classe PanelRappel représente l’affichage graphique +d’un rappel dans l’application Papillon.
+
+
PanelRappel(Rappel) - Constructor for class fr.iutfbleau.papillon.PanelRappel
+
+
Constructeur du panneau associé à un rappel sans référence à la fenêtre principale.
+
+
PanelRappel(Rappel, Main) - Constructor for class fr.iutfbleau.papillon.PanelRappel
+
+
Constructeur du panneau associé à un rappel et à la fenêtre principale.
+
+
+

R

+
+
Rappel - Class in fr.iutfbleau.papillon
+
+
La classe Rappel représente un rappel utilisateur, +avec un titre, un contenu, un thème et un rang de priorité.
+
+
Rappel() - Constructor for class fr.iutfbleau.papillon.Rappel
+
+
Constructeur vide (utilisé notamment pour la lecture SQL).
+
+
Rappel(int, String, String, String, int) - Constructor for class fr.iutfbleau.papillon.Rappel
+
+
Constructeur complet avec identifiant.
+
+
Rappel(String, String, String, int) - Constructor for class fr.iutfbleau.papillon.Rappel
+
+
Constructeur d’un nouveau rappel sans identifiant.
+
+
RappelBD - Class in fr.iutfbleau.papillon
+
+
La classe RappelBD gère les interactions entre le programme +et la table rappel dans la base de données.
+
+
RappelBD() - Constructor for class fr.iutfbleau.papillon.RappelBD
+
 
+
+

S

+
+
setCle(String) - Method in class fr.iutfbleau.papillon.Utilisateur
+
 
+
setContenu(String) - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
setId(int) - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
setId(int) - Method in class fr.iutfbleau.papillon.Utilisateur
+
 
+
setRang(int) - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
setTheme(String) - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
setTitre(String) - Method in class fr.iutfbleau.papillon.Rappel
+
 
+
setTrie(int) - Method in class fr.iutfbleau.papillon.Main
+
+
Applique un tri des rappels selon leur rang de priorité.
+
+
Start - Class in fr.iutfbleau.papillon
+
+
La classe Start constitue le point d’entrée principal +de l’application Papillon.
+
+
Start() - Constructor for class fr.iutfbleau.papillon.Start
+
 
+
supprimer(int, int) - Static method in class fr.iutfbleau.papillon.RappelBD
+
+
Supprime un rappel spécifique appartenant à un utilisateur.
+
+
supprimerParId(int) - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Supprime un rappel de la base de données selon son identifiant.
+
+
supprimerToutPourUtilisateur(int) - Static method in class fr.iutfbleau.papillon.RappelBD
+
+
Supprime tous les rappels appartenant à un utilisateur spécifique.
+
+
+

T

+
+
tirage(Main) - Method in class fr.iutfbleau.papillon.ChoixRang
+
+
Met à jour l’affichage des rappels en fonction du rang sélectionné.
+
+
toString() - Method in class fr.iutfbleau.papillon.Utilisateur
+
 
+
+

U

+
+
UserKey - Class in fr.iutfbleau.papillon
+
+
La classe UserKey permet de gérer une clé d'identification locale +unique pour un utilisateur du logiciel Papillon.
+
+
UserKey() - Constructor for class fr.iutfbleau.papillon.UserKey
+
 
+
Utilisateur - Class in fr.iutfbleau.papillon
+
+
La classe Utilisateur représente un utilisateur unique +du logiciel Papillon, identifié par une clé locale.
+
+
Utilisateur(int, String) - Constructor for class fr.iutfbleau.papillon.Utilisateur
+
+
Constructeur complet d’un utilisateur.
+
+
Utilisateur(String) - Constructor for class fr.iutfbleau.papillon.Utilisateur
+
+
Constructeur d’un utilisateur à partir de sa clé uniquement.
+
+
UtilisateurBD - Class in fr.iutfbleau.papillon
+
+
La classe UtilisateurBD gère la table utilisateur +de la base de données.
+
+
UtilisateurBD() - Constructor for class fr.iutfbleau.papillon.UtilisateurBD
+
 
+
+

V

+
+
viderTousMesRappels() - Method in class fr.iutfbleau.papillon.GestionRappel
+
+
Supprime tous les rappels appartenant à l’utilisateur courant.
+
+
+A B C F G I L M P R S T U V 
All Classes and Interfaces|All Packages|Serialized Form
+
+ + diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..b924813 --- /dev/null +++ b/doc/index.html @@ -0,0 +1,26 @@ + + + + +Generated Documentation (Untitled) + + + + + + + + + + + +
+ +

fr/iutfbleau/papillon/package-summary.html

+
+ + diff --git a/doc/legal/ADDITIONAL_LICENSE_INFO b/doc/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/doc/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/doc/legal/ASSEMBLY_EXCEPTION b/doc/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/doc/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/doc/legal/LICENSE b/doc/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/doc/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/doc/legal/dejavufonts.md b/doc/legal/dejavufonts.md new file mode 100644 index 0000000..8c9e3cf --- /dev/null +++ b/doc/legal/dejavufonts.md @@ -0,0 +1,191 @@ +## DejaVu fonts v2.37 + +### DejaVu License +
+Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
+Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
+
+
+Bitstream Vera Fonts Copyright
+------------------------------
+
+Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
+a trademark of Bitstream, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of the fonts accompanying this license ("Fonts") and associated
+documentation files (the "Font Software"), to reproduce and distribute the
+Font Software, including without limitation the rights to use, copy, merge,
+publish, distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright and trademark notices and this permission notice shall
+be included in all copies of one or more of the Font Software typefaces.
+
+The Font Software may be modified, altered, or added to, and in particular
+the designs of glyphs or characters in the Fonts may be modified and
+additional glyphs or characters may be added to the Fonts, only if the fonts
+are renamed to names not containing either the words "Bitstream" or the word
+"Vera".
+
+This License becomes null and void to the extent applicable to Fonts or Font
+Software that has been modified and is distributed under the "Bitstream
+Vera" names.
+
+The Font Software may be sold as part of a larger software package but no
+copy of one or more of the Font Software typefaces may be sold by itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
+TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
+FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
+ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
+FONT SOFTWARE.
+
+Except as contained in this notice, the names of Gnome, the Gnome
+Foundation, and Bitstream Inc., shall not be used in advertising or
+otherwise to promote the sale, use or other dealings in this Font Software
+without prior written authorization from the Gnome Foundation or Bitstream
+Inc., respectively. For further information, contact: fonts at gnome dot
+org.
+
+Arev Fonts Copyright
+------------------------------
+
+Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the fonts accompanying this license ("Fonts") and
+associated documentation files (the "Font Software"), to reproduce
+and distribute the modifications to the Bitstream Vera Font Software,
+including without limitation the rights to use, copy, merge, publish,
+distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright and trademark notices and this permission notice
+shall be included in all copies of one or more of the Font Software
+typefaces.
+
+The Font Software may be modified, altered, or added to, and in
+particular the designs of glyphs or characters in the Fonts may be
+modified and additional glyphs or characters may be added to the
+Fonts, only if the fonts are renamed to names not containing either
+the words "Tavmjong Bah" or the word "Arev".
+
+This License becomes null and void to the extent applicable to Fonts
+or Font Software that has been modified and is distributed under the
+"Tavmjong Bah Arev" names.
+
+The Font Software may be sold as part of a larger software package but
+no copy of one or more of the Font Software typefaces may be sold by
+itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
+TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
+
+Except as contained in this notice, the name of Tavmjong Bah shall not
+be used in advertising or otherwise to promote the sale, use or other
+dealings in this Font Software without prior written authorization
+from Tavmjong Bah. For further information, contact: tavmjong @ free
+. fr.
+
+TeX Gyre DJV Math
+-----------------
+Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
+
+Math extensions done by B. Jackowski, P. Strzelczyk and P. Pianowski
+(on behalf of TeX users groups) are in public domain.
+
+Letters imported from Euler Fraktur from AMSfonts are (c) American
+Mathematical Society (see below).
+Bitstream Vera Fonts Copyright
+Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera
+is a trademark of Bitstream, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of the fonts accompanying this license ("Fonts") and associated
+documentation
+files (the "Font Software"), to reproduce and distribute the Font Software,
+including without limitation the rights to use, copy, merge, publish,
+distribute,
+and/or sell copies of the Font Software, and to permit persons  to whom
+the Font Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright and trademark notices and this permission notice
+shall be
+included in all copies of one or more of the Font Software typefaces.
+
+The Font Software may be modified, altered, or added to, and in particular
+the designs of glyphs or characters in the Fonts may be modified and
+additional
+glyphs or characters may be added to the Fonts, only if the fonts are
+renamed
+to names not containing either the words "Bitstream" or the word "Vera".
+
+This License becomes null and void to the extent applicable to Fonts or
+Font Software
+that has been modified and is distributed under the "Bitstream Vera"
+names.
+
+The Font Software may be sold as part of a larger software package but
+no copy
+of one or more of the Font Software typefaces may be sold by itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
+TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
+FOUNDATION
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
+SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN
+ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR
+INABILITY TO USE
+THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
+Except as contained in this notice, the names of GNOME, the GNOME
+Foundation,
+and Bitstream Inc., shall not be used in advertising or otherwise to promote
+the sale, use or other dealings in this Font Software without prior written
+authorization from the GNOME Foundation or Bitstream Inc., respectively.
+For further information, contact: fonts at gnome dot org.
+
+AMSFonts (v. 2.2) copyright
+
+The PostScript Type 1 implementation of the AMSFonts produced by and
+previously distributed by Blue Sky Research and Y&Y, Inc. are now freely
+available for general use. This has been accomplished through the
+cooperation
+of a consortium of scientific publishers with Blue Sky Research and Y&Y.
+Members of this consortium include:
+
+Elsevier Science IBM Corporation Society for Industrial and Applied
+Mathematics (SIAM) Springer-Verlag American Mathematical Society (AMS)
+
+In order to assure the authenticity of these fonts, copyright will be
+held by
+the American Mathematical Society. This is not meant to restrict in any way
+the legitimate use of the fonts, such as (but not limited to) electronic
+distribution of documents containing these fonts, inclusion of these fonts
+into other public domain or commercial font collections or computer
+applications, use of the outline data to create derivative fonts and/or
+faces, etc. However, the AMS does require that the AMS copyright notice be
+removed from any derivative versions of the fonts which have been altered in
+any way. In addition, to ensure the fidelity of TeX documents using Computer
+Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces,
+has requested that any alterations which yield different font metrics be
+given a different name.
+
+
diff --git a/doc/legal/jquery.md b/doc/legal/jquery.md new file mode 100644 index 0000000..a763ec6 --- /dev/null +++ b/doc/legal/jquery.md @@ -0,0 +1,26 @@ +## jQuery v3.7.1 + +### jQuery License +``` +jQuery v 3.7.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +``` diff --git a/doc/legal/jqueryUI.md b/doc/legal/jqueryUI.md new file mode 100644 index 0000000..46bfbaa --- /dev/null +++ b/doc/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.14.1 + +### jQuery UI License +``` +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/doc/member-search-index.js b/doc/member-search-index.js new file mode 100644 index 0000000..5be9841 --- /dev/null +++ b/doc/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"fr.iutfbleau.papillon","c":"BtnAjouter","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"BtnModifier","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"BtnSupprimer","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"FenetreRappel","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"GestionAjout","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"GestionModif","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"actionPerformed(ActionEvent)","u":"actionPerformed(java.awt.event.ActionEvent)"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"ajouter(Rappel, int)","u":"ajouter(fr.iutfbleau.papillon.Rappel,int)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"ajouter(String, String, String, int)","u":"ajouter(java.lang.String,java.lang.String,java.lang.String,int)"},{"p":"fr.iutfbleau.papillon","c":"BaseDeDonnees","l":"BaseDeDonnees()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"BtnAjouter","l":"BtnAjouter(Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"BtnModifier","l":"BtnModifier(Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"BtnSupprimer","l":"BtnSupprimer(Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"ChoixRang","l":"ChoixRang()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"ColorIcon","l":"ColorIcon(Color, int, int)","u":"%3Cinit%3E(java.awt.Color,int,int)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"CouleurList","l":"couleurDe(String)","u":"couleurDe(java.lang.String)"},{"p":"fr.iutfbleau.papillon","c":"CouleurList","l":"CouleurList()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"createPanel(Rappel)","u":"createPanel(fr.iutfbleau.papillon.Rappel)"},{"p":"fr.iutfbleau.papillon","c":"Crud","l":"Crud(Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"FenetreAjout","l":"FenetreAjout(Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"FenetreModif","l":"FenetreModif(Main, Rappel)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Main,fr.iutfbleau.papillon.Rappel)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"FenetreRappel","l":"FenetreRappel(Rappel, Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Rappel,fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"UtilisateurBD","l":"findByKey(String)","u":"findByKey(java.lang.String)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"GestionAjout","l":"GestionAjout(JFrame, Main, JTextField, JTextArea, JComboBox, JComboBox)","u":"%3Cinit%3E(javax.swing.JFrame,fr.iutfbleau.papillon.Main,javax.swing.JTextField,javax.swing.JTextArea,javax.swing.JComboBox,javax.swing.JComboBox)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"GestionModif","l":"GestionModif(JFrame, Main, JTextField, JTextArea, JComboBox, JComboBox, Rappel)","u":"%3Cinit%3E(javax.swing.JFrame,fr.iutfbleau.papillon.Main,javax.swing.JTextField,javax.swing.JTextArea,javax.swing.JComboBox,javax.swing.JComboBox,fr.iutfbleau.papillon.Rappel)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"GestionRappel()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"getCle()"},{"p":"fr.iutfbleau.papillon","c":"BaseDeDonnees","l":"getConnexion()","k":"6"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"getContenu()"},{"p":"fr.iutfbleau.papillon","c":"ColorIcon","l":"getIconHeight()"},{"p":"fr.iutfbleau.papillon","c":"ColorIcon","l":"getIconWidth()"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"getId()"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"getId()"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"getId()"},{"p":"fr.iutfbleau.papillon","c":"CouleurList","l":"getListCellRendererComponent(JList, Object, int, boolean, boolean)","u":"getListCellRendererComponent(javax.swing.JList,java.lang.Object,int,boolean,boolean)"},{"p":"fr.iutfbleau.papillon","c":"UtilisateurBD","l":"getOrCreateIdByKey(String)","u":"getOrCreateIdByKey(java.lang.String)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"getPanelRpl()"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"getRang()"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"getRappel()"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"getRPanel()"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"getSelection()"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"getTheme()"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"getTitre()"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"getUtilisateurId()"},{"p":"fr.iutfbleau.papillon","c":"LimiteContenu","l":"insertString(int, String, AttributeSet)","u":"insertString(int,java.lang.String,javax.swing.text.AttributeSet)"},{"p":"fr.iutfbleau.papillon","c":"LimiteContenu","l":"LimiteContenu(int)","u":"%3Cinit%3E(int)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"UserKey","l":"lireOuCreerCle()","k":"6"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"lister()"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"listerParUtilisateur(int)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"Main()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Start","l":"main(String[])","u":"main(java.lang.String[])","k":"6"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"maj()"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"modifier(int, Rappel, int)","u":"modifier(int,fr.iutfbleau.papillon.Rappel,int)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"modifierParId(int, Rappel)","u":"modifierParId(int,fr.iutfbleau.papillon.Rappel)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"mouseClicked(MouseEvent)","u":"mouseClicked(java.awt.event.MouseEvent)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"mouseEntered(MouseEvent)","u":"mouseEntered(java.awt.event.MouseEvent)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"mouseExited(MouseEvent)","u":"mouseExited(java.awt.event.MouseEvent)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"mousePressed(MouseEvent)","u":"mousePressed(java.awt.event.MouseEvent)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"mouseReleased(MouseEvent)","u":"mouseReleased(java.awt.event.MouseEvent)"},{"p":"fr.iutfbleau.papillon","c":"ColorIcon","l":"paintIcon(Component, Graphics, int, int)","u":"paintIcon(java.awt.Component,java.awt.Graphics,int,int)"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"PanelRappel(Rappel)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Rappel)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"PanelRappel","l":"PanelRappel(Rappel, Main)","u":"%3Cinit%3E(fr.iutfbleau.papillon.Rappel,fr.iutfbleau.papillon.Main)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"Rappel()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"Rappel(int, String, String, String, int)","u":"%3Cinit%3E(int,java.lang.String,java.lang.String,java.lang.String,int)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"Rappel(String, String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,int)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"RappelBD()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"setCle(String)","u":"setCle(java.lang.String)"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"setContenu(String)","u":"setContenu(java.lang.String)"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"setId(int)"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"setId(int)"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"setRang(int)"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"setTheme(String)","u":"setTheme(java.lang.String)"},{"p":"fr.iutfbleau.papillon","c":"Rappel","l":"setTitre(String)","u":"setTitre(java.lang.String)"},{"p":"fr.iutfbleau.papillon","c":"Main","l":"setTrie(int)"},{"p":"fr.iutfbleau.papillon","c":"Start","l":"Start()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"supprimer(int, int)","u":"supprimer(int,int)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"supprimerParId(int)"},{"p":"fr.iutfbleau.papillon","c":"RappelBD","l":"supprimerToutPourUtilisateur(int)","k":"6"},{"p":"fr.iutfbleau.papillon","c":"ChoixRang","l":"tirage(Main)","u":"tirage(fr.iutfbleau.papillon.Main)"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"toString()"},{"p":"fr.iutfbleau.papillon","c":"UserKey","l":"UserKey()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"Utilisateur(int, String)","u":"%3Cinit%3E(int,java.lang.String)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"Utilisateur","l":"Utilisateur(String)","u":"%3Cinit%3E(java.lang.String)","k":"3"},{"p":"fr.iutfbleau.papillon","c":"UtilisateurBD","l":"UtilisateurBD()","u":"%3Cinit%3E()","k":"3"},{"p":"fr.iutfbleau.papillon","c":"GestionRappel","l":"viderTousMesRappels()"}];updateSearchResults(); \ No newline at end of file diff --git a/doc/module-search-index.js b/doc/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/doc/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/doc/overview-tree.html b/doc/overview-tree.html new file mode 100644 index 0000000..eeb9efe --- /dev/null +++ b/doc/overview-tree.html @@ -0,0 +1,160 @@ + + + + +Class Hierarchy + + + + + + + + + + + + + + +
+ +
+
+
+
+

Hierarchy For All Packages

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+ + diff --git a/doc/package-search-index.js b/doc/package-search-index.js new file mode 100644 index 0000000..2d16985 --- /dev/null +++ b/doc/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html","k":"18"},{"l":"fr.iutfbleau.papillon"}];updateSearchResults(); \ No newline at end of file diff --git a/doc/resource-files/copy.svg b/doc/resource-files/copy.svg new file mode 100644 index 0000000..b07ac7e --- /dev/null +++ b/doc/resource-files/copy.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff b/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff new file mode 100644 index 0000000..63a79c0 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff2 b/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff2 new file mode 100644 index 0000000..0665554 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-Bold.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff b/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff new file mode 100644 index 0000000..dead290 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff2 b/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff2 new file mode 100644 index 0000000..89328f3 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-BoldOblique.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff b/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff new file mode 100644 index 0000000..6c62443 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff2 b/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff2 new file mode 100644 index 0000000..8a50fa1 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans-Oblique.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans.woff b/doc/resource-files/fonts/DejaVuLGCSans.woff new file mode 100644 index 0000000..a0f1efa Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSans.woff2 b/doc/resource-files/fonts/DejaVuLGCSans.woff2 new file mode 100644 index 0000000..fecdbd8 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSans.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff b/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff new file mode 100644 index 0000000..9f646ba Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff2 b/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff2 new file mode 100644 index 0000000..346de2d Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-Bold.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff b/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff new file mode 100644 index 0000000..7a6b3ac Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff2 b/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff2 new file mode 100644 index 0000000..ede24ef Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-BoldOblique.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff b/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff new file mode 100644 index 0000000..892833b Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff2 b/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff2 new file mode 100644 index 0000000..9e90514 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono-Oblique.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono.woff b/doc/resource-files/fonts/DejaVuLGCSansMono.woff new file mode 100644 index 0000000..e94e844 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSansMono.woff2 b/doc/resource-files/fonts/DejaVuLGCSansMono.woff2 new file mode 100644 index 0000000..9460c05 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSansMono.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff b/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff new file mode 100644 index 0000000..0f38846 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff2 b/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff2 new file mode 100644 index 0000000..d65a5e9 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-Bold.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff b/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff new file mode 100644 index 0000000..63fd5e3 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff2 b/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff2 new file mode 100644 index 0000000..e29307e Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-BoldItalic.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff b/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff new file mode 100644 index 0000000..5df6d00 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff2 b/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff2 new file mode 100644 index 0000000..61ff146 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif-Italic.woff2 differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif.woff b/doc/resource-files/fonts/DejaVuLGCSerif.woff new file mode 100644 index 0000000..280e378 Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif.woff differ diff --git a/doc/resource-files/fonts/DejaVuLGCSerif.woff2 b/doc/resource-files/fonts/DejaVuLGCSerif.woff2 new file mode 100644 index 0000000..bbd32cd Binary files /dev/null and b/doc/resource-files/fonts/DejaVuLGCSerif.woff2 differ diff --git a/doc/resource-files/fonts/dejavu.css b/doc/resource-files/fonts/dejavu.css new file mode 100644 index 0000000..b450caa --- /dev/null +++ b/doc/resource-files/fonts/dejavu.css @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ + */ + +/* DejaVu fonts v2.37 */ + +@font-face { + font-family: 'DejaVu Sans Mono'; + src: url('DejaVuLGCSansMono.woff2') format('woff2'), + url('DejaVuLGCSansMono.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Sans Mono'; + src: url('DejaVuLGCSansMono-Oblique.woff2') format('woff2'), + url('DejaVuLGCSansMono-Oblique.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVu Sans Mono'; + src: url('DejaVuLGCSansMono-Bold.woff2') format('woff2'), + url('DejaVuLGCSansMono-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Sans Mono'; + src: url('DejaVuLGCSansMono-BoldOblique.woff2') format('woff2'), + url('DejaVuLGCSansMono-BoldOblique.woff') format('woff'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'DejaVu Sans'; + src: url('DejaVuLGCSans.woff2') format('woff2'), + url('DejaVuLGCSans.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Sans'; + src: url('DejaVuLGCSans-Oblique.woff2') format('woff2'), + url('DejaVuLGCSans-Oblique.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVu Sans'; + src: url('DejaVuLGCSans-Bold.woff2') format('woff2'), + url('DejaVuLGCSans-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Sans'; + src: url('DejaVuLGCSans-BoldOblique.woff2') format('woff2'), + url('DejaVuLGCSans-BoldOblique.woff') format('woff'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'DejaVu Serif'; + src: url('DejaVuLGCSerif.woff2') format('woff2'), + url('DejaVuLGCSerif.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Serif'; + src: url('DejaVuLGCSerif-Italic.woff2') format('woff2'), + url('DejaVuLGCSerif-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVu Serif'; + src: url('DejaVuLGCSerif-Bold.woff2') format('woff2'), + url('DejaVuLGCSerif-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVu Serif'; + src: url('DejaVuLGCSerif-BoldItalic.woff2') format('woff2'), + url('DejaVuLGCSerif-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; +} diff --git a/doc/resource-files/glass.svg b/doc/resource-files/glass.svg new file mode 100644 index 0000000..ff7df85 --- /dev/null +++ b/doc/resource-files/glass.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/doc/resource-files/jquery-ui.min.css b/doc/resource-files/jquery-ui.min.css new file mode 100644 index 0000000..7e0692d --- /dev/null +++ b/doc/resource-files/jquery-ui.min.css @@ -0,0 +1,6 @@ +/*! jQuery UI - v1.14.1 - 2025-01-13 +* https://jqueryui.com +* Includes: core.css, autocomplete.css, menu.css +* Copyright OpenJS Foundation and other contributors; Licensed MIT */ + +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} \ No newline at end of file diff --git a/doc/resource-files/left.svg b/doc/resource-files/left.svg new file mode 100644 index 0000000..11a93ff --- /dev/null +++ b/doc/resource-files/left.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/doc/resource-files/link.svg b/doc/resource-files/link.svg new file mode 100644 index 0000000..58d38ac --- /dev/null +++ b/doc/resource-files/link.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/doc/resource-files/right.svg b/doc/resource-files/right.svg new file mode 100644 index 0000000..4b54939 --- /dev/null +++ b/doc/resource-files/right.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/doc/resource-files/stylesheet.css b/doc/resource-files/stylesheet.css new file mode 100644 index 0000000..f7994c7 --- /dev/null +++ b/doc/resource-files/stylesheet.css @@ -0,0 +1,1667 @@ +/* + * Copyright (c) 2010, 2025, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ + */ + +/* + * Javadoc style sheet + */ + +@import url('fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14.2px; + --block-font-size: 14.4px; + --code-font-size: 14px; + --nav-font-size: 13.4px; + /* Line height for continuous text blocks */ + --block-line-height: 1.5; + --code-line-height: 1.6; + /* Text colors for body and block elements */ + --body-text-color: #181818; + --block-text-color: #181818; + /* Background colors for various elements */ + --body-background-color: #ffffff; + --section-background-color: var(--body-background-color); + --detail-background-color: #ffffff; + --code-background-color: #f5f5f5; + --mark-background-color: #f7f7f7; + --detail-block-color: #f4f4f4; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + --subnav-link-color: #47688a; + --member-heading-background-color: var(--subnav-background-color); + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #4a698a; + /* Background colors for generated tables */ + --table-header-color: #ebeff4; + --even-row-color: #ffffff; + --odd-row-color: #f0f0f2; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #437291; + --link-color-active: #bb7a2a; + /* Table of contents */ + --toc-background-color: #f8f8f8; + --toc-highlight-color: var(--subnav-background-color); + --toc-hover-color: #e9ecf0; + /* Snippet and pre colors */ + --snippet-background-color: #f2f2f4; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + --pre-background-color: var(--snippet-background-color); + --pre-text-color: var(--snippet-text-color); + /* Border colors for structural elements and user defined tables */ + --border-color: #e6e6e6; + --table-border-color: #000000; + /* Styles for table tabs */ + --tab-border-radius: 2px 2px 0 0; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff66; + /* Copy button colors and filters */ + --button-border-color: #b0b8c8; + --button-active-filter: brightness(96%); + --button-focus-filter: brightness(104%); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; + /* Navigation bar dimensions */ + --top-nav-height: 44px; + --sub-nav-height: 36px; + --nav-height: calc(var(--top-nav-height) + var(--sub-nav-height)); + --max-content-width: 1500px; + --content-margin: 0 auto; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +main [id] { + scroll-margin-top: calc(var(--nav-height) + 6px); +} +div.main-grid { + max-width: var(--max-content-width); + margin: var(--content-margin); +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +nav a:link, nav a:visited { + color: var(--subnav-link-color); +} +a[href]:hover, a[href]:active { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:var(--code-font-size); + line-height: var(--code-line-height); + background-color: var(--pre-background-color); + color: var(--pre-text-color); + padding: 10px; + overflow-x:auto; +} +h1 { + font-size:1.425em; +} +h2 { + font-size:1.28em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature, div.member-signature > span { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +tt { + font-family:var(--code-font-family); +} +code { + font-family:var(--code-font-family); + font-size:var(--code-font-size); +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +hr { + border-color: #aaa; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + flex: 0 0 auto; + padding:0 20px; + margin:0; + font-size:0.915em; + max-width: 50%; + white-space: nowrap; +} +.legal-copy { + font-family: var(--body-font-family); + line-height: normal; +} +/* + * Styles for navigation bar. + */ +@media screen { + header { + position:sticky; + top:0; + z-index:2; + background: var(--body-background-color); + } +} +.nav-content { + display:flex; + flex-direction: row; + align-items: center; + width: 100%; + height: 100%; + max-width: var(--max-content-width); + margin: var(--content-margin); +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + width:100%; + height:var(--top-nav-height); + overflow:visible; + font-size:0.857em; + position:relative; +} +.top-nav nav.toc { + display: none; + flex-direction: column; +} +.top-nav nav.toc button.show-sidebar, +.top-nav nav.toc button.hide-sidebar { + display: none; +} +button#navbar-toggle-button { + display:none; +} +ul.nav-list { + display:inline-flex; + margin:0; + padding-left:4px; + flex: 1 1 auto; + white-space: nowrap; +} +ul.nav-list li { + list-style:none; + padding: 5px 6px; + text-transform:uppercase; + height: 1.2em; +} +div.sub-nav { + background-color:var(--subnav-background-color); + width:100%; + overflow:hidden; + font-size:var(--nav-font-size); + height: var(--sub-nav-height); +} +ol.sub-nav-list { + flex: 1 1 90%; + line-height: 1.8; + display: inline-flex; + overflow: auto; + scroll-snap-type: x mandatory; + scroll-padding-left: 13px; + scrollbar-width: none; + padding-left:6px; + white-space: nowrap; + margin:0; +} +ol.sub-nav-list::-webkit-scrollbar { + display: none; +} +ol.sub-nav-list li { + list-style:none; + scroll-snap-align: start; +} +ol.sub-nav-list li:not(:first-child) { + background: url("right.svg") no-repeat 3px; + background-size: 10px; + padding-left: 17px; + list-style: none; +} +ol.sub-nav-list a { + padding: 3px; +} +ol.sub-nav-list a.current-selection { + background-color: var(--toc-background-color); + border-radius: 3px; +} +.sub-nav .nav-list-search { + flex: 1 1 10%; + margin: 0 15px; + position:relative; + white-space: nowrap; +} +.top-nav .nav-list a:link, .top-nav .nav-list a:active, .top-nav .nav-list a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav .nav-list a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: 0 5px; + border-radius: 1px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0 12px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; + overflow-x:auto; +} +body.class-use-page h2 { + margin-top: 20px; +} +body.class-declaration-page .details h3 { + background-color:var(--member-heading-background-color); + border:1px solid var(--border-color); + margin:6px 0; + padding:7px; + overflow-x:auto; + font-size: 1.08em; +} +body.class-declaration-page section.detail:target > h3, +body.class-declaration-page section.detail > h3:target { + background-color: var(--navbar-background-color); + color: var(--navbar-text-color); +} +body.class-declaration-page section.detail:target > h3 > a.anchor-link > img, +body.class-declaration-page section.detail > h3:target > a.anchor-link > img { + filter: invert(100%) sepia(4%) saturate(98%) hue-rotate(212deg) brightness(160%) contrast(160%); +} +h1 > sup { + font-size: small; +} +/* + * Styles for page layout containers. + */ +.main-grid { + display: flex; + flex-direction: row; +} +.main-grid main { + flex: 3.2 1 0; + min-width: 240px +} +.main-grid nav.toc { + flex: 1 1 0; + min-width: 240px; +} +main { + padding:10px 25px; + position:relative; +} +/* Compensate for non-collapsing margins between element description and summary tables */ +div.horizontal-scroll > section[id$=-description] > :is(dl, ol, ul, p, div, blockquote, pre):last-child, +div.horizontal-scroll > section[id$=-description] > :last-child > :is(li, dd):last-child, +section.class-description > div.horizontal-scroll > :is(dl, ol, ul, p, div, blockquote, pre):last-child, +section.class-description > div.horizontal-scroll > :last-child > :is(li, dd):last-child { + margin-bottom:4px; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:6px 10px 10px 15px; + font-size:var(--block-font-size); + font-family:var(--block-font-family); + line-height:var(--block-line-height); +} +dl.notes > dd > ul, dl.notes > dd > ol { + margin-bottom: 1em; + margin-top: 1em; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for table of contents. + */ +.main-grid nav.toc { + background-color: var(--toc-background-color); + position: sticky; + top: calc(var(--nav-height)); + max-height: calc(100vh - var(--nav-height)); + display: flex; + flex-direction: column; + font-family: var(--body-font-family); + z-index: 1; +} +.main-grid nav.toc div.toc-header { + top: var(--nav-height); + z-index: 1; + padding: 15px 20px; +} +.main-grid nav.toc > ol.toc-list { + max-height: calc(100vh - var(--nav-height) - 100px); + padding-left: 12px; +} +.main-grid nav.toc button { + position: absolute; + bottom: 16px; + z-index: 3; + background-color: var(--toc-background-color); + color: #666666; + font-size: 0.76rem; + border: none; + cursor: pointer; + padding: 6px 10px; + white-space: nowrap; +} +.main-grid nav.toc button > img { + vertical-align: middle; + width: 16px; + height: 16px; +} +.main-grid nav.toc button.hide-sidebar { + right: 0; +} +.main-grid nav.toc button.show-sidebar { + left: 0; + display: none; +} +.main-grid nav.toc button span { + display: none; +} +.main-grid nav.toc button:hover, +.main-grid nav.toc button:focus { + color: var(--body-text-color); + border: 1px solid var(--subnav-background-color); +} +.main-grid nav.toc button:active { + background-color: var(--subnav-background-color); + color: var(--link-color-active); +} +.main-grid nav.toc button:hover span, +.main-grid nav.toc button:focus span { + display: inline; +} +.main-grid nav.toc button:hover, +.main-grid nav.toc button:focus { + box-shadow: 1px 1px 5px rgba(0,0,0,0.2); +} +.main-grid nav.toc.hide-sidebar { + min-width: revert; + background-color: var(--body-background-color); + max-width: 20px; +} +.main-grid nav.toc.hide-sidebar div.toc-header, +.main-grid nav.toc.hide-sidebar ol.toc-list, +.main-grid nav.toc.hide-sidebar button.hide-sidebar { + display: none; +} +.main-grid nav.toc.hide-sidebar button.show-sidebar { + display: inline; +} +nav.toc div.toc-header { + padding: 15px; + display: inline-flex; + align-items: center; + color: var(--body-text-color); + font-size: 0.856em; + font-weight: bold; + white-space: nowrap; + overflow-x: hidden; + position: sticky; + min-height: 20px; +} +nav.toc > ol.toc-list { + overflow: hidden auto; + overscroll-behavior: contain; +} +nav.toc ol.toc-list { + list-style: none; + font-size: var(--nav-font-size); + padding-left: 0; + margin: 0; +} +a.current-selection { + font-weight: bold; +} +nav.toc a { + display: block; + padding: 8px; + overflow: hidden; + text-overflow: ellipsis; +} +nav.toc ol.toc-list ol.toc-list a { + padding-left: 24px; +} +nav.toc ol.toc-list ol.toc-list ol.toc-list a { + padding-left: 40px; +} +nav.toc a:hover { + background-color: var(--toc-hover-color); +} +nav.toc a.current-selection { + background-color: var(--toc-highlight-color); +} +nav.toc a:focus-visible { + background-color: var(--selected-background-color); + color: var(--selected-text-color); + outline: none; +} +/* + * Styles for lists. + */ +ul.details-list .block > ul, +ul.details-list .notes dd > ul { + margin: 12px 0; +} +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance div.inheritance { + margin-left:2em; +} +main > div.inheritance { + overflow-x:auto; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:4px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +dl.notes > dd > ul.tag-list, dl.notes > dd > ul.tag-list-long { + padding-left: 0; + margin: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6; +} +ul.preview-feature-list input { + margin-right: 8px; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + border:1px solid var(--border-color); + border-top:0; + padding:0; + margin-bottom: 14px; +} +.caption { + overflow: auto hidden; + padding: 8px 0 0 1px; +} +.caption span, +.inherited-list h3 { + font-size: 0.98em; + font-weight:bold; + white-space:nowrap; + border-radius: var(--tab-border-radius); + margin: 0; +} +.caption span { + background-color: var(--navbar-background-color); + padding:5px 12px 7px 12px; + height:16px; + color:var(--navbar-text-color); + display:inline-block; +} +.inherited-list h3 { + background-color: var(--subnav-background-color); + padding:6px 12px 7px 12px; + height:17px; + width: fit-content; + max-width: 93%; +} +/* Background required for captions with links */ +.class-use-page .caption span, +.package-use-page .caption span, +.constants-summary-page .caption span, +.inherited-list h3 { + background-color: var(--subnav-background-color); + color: var(--block-text-color); +} +.caption a:link, +.caption a:visited, +.inherited-list h3 a:link, +.inherited-list h3 a:visited { + color:var(--subnav-link-color); +} +div.table-tabs { + padding: 8px 0 0 1px; + white-space: nowrap; + overflow-x: auto; +} +div.table-tabs > button { + font-size: 0.98em; + border: none; + cursor: pointer; + padding: 6px 12px; + font-weight: bold; + margin-right: 8px; + border-radius: var(--tab-border-radius); +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 6px 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + font-size: var(--nav-font-size); + line-height: 1.6; + padding: 8px 3px 3px 7px; + overflow: auto hidden; +} +.summary-table > div.table-header, .details-table > div.table-header { + font-size: 0.92em; + line-height: 1.2; + height: 18px; +} +.table-header { + background: var(--table-header-color); + font-weight: bold; + border-bottom: 1px solid var(--border-color); +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-second, .col-constructor-name { + overflow: auto; +} +body:not(.class-declaration-page) .col-first a:link, +.col-summary-item-name a:link { + font-weight:bold; +} +.even-row-color { + background-color:var(--even-row-color); +} +.odd-row-color { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--block-font-size); + font-family:var(--block-font-family); + line-height:var(--block-line-height); +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:var(--code-font-size); + margin:8px 0 14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre-wrap; +} +.member-signature .type-parameters { + white-space: pre-wrap; +} +:is(h1, h2, h3, h4, h5, h6, sup, sub, small, big) code, +[style*=font-size] code { + font-size: inherit; +} +.doc-file-page main { + font-family: var(--block-font-family); + font-size: var(--block-font-size); + line-height: var(--block-line-height); +} +.doc-file-page main footer { + font-family: var(--body-font-family); + font-size: var(--body-font-size); +} +.tree-page .hierarchy, +.package-tree-page .hierarchy { + line-height: 1.4; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label, +.restricted-label { + font-weight:bold; +} +sup.preview-mark, +sup.restricted-mark { + font-family: var(--code-font-family); + font-weight: normal; + font-size: 8px; + background-color: var(--mark-background-color); + padding: 1px; + border-radius: 2px; +} +sup.preview-mark > a:link, +sup.restricted-mark > a:link { + font-weight: normal; +} +.deprecation-comment, .help-footnote, .preview-comment, .restricted-comment { + font-style:italic; +} +.deprecation-block, .preview-block, .restricted-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:6px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.deprecation-block code, .preview-block code, .restricted-block code { + font-size: 0.97em; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-menu .ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + color: var(--selected-text-color); + /* Workaround for browser bug, see JDK-8275889 */ + margin: -1px 0; + border-top: 1px solid var(--selected-background-color); + border-bottom: 1px solid var(--selected-background-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 8px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + box-sizing: border-box; +} +.ui-autocomplete { + max-height:calc(98vh - var(--nav-height)); + max-width:min(75vw, calc(var(--max-content-width) * 0.748)); + overflow-y:auto; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); + overscroll-behavior: contain; +} +ul.ui-autocomplete { + position:fixed; + z-index:10; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; + box-sizing: border-box; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bold; + z-index: 10; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete > li.result-item:nth-child(even) { + background-color: var(--even-row-color) +} +.ui-autocomplete > li.result-item:nth-child(odd) { + background-color: var(--odd-row-color) +} +.ui-autocomplete { + display: grid; + grid-template-columns: auto auto; +} +.ui-autocomplete > li, +.ui-autocomplete > li > div { + grid-column: 1 / 3; +} +.ui-autocomplete > li.result-item, +.ui-autocomplete > li.result-item > div { + display: grid; + grid-template-columns: subgrid; +} +.ui-autocomplete > li.result-item { + font-family: var(--body-font-family); + font-size: var(--body-font-size); + line-height: 1.7; +} +.ui-autocomplete .search-result-label { + padding: 1px 4px; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-autocomplete .search-result-desc { + font-size: var(--nav-font-size); + padding: 2px 4px; + color: #404040; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +.ui-menu .ui-state-active .search-result-desc { + color: #383838; +} +.ui-menu .ui-menu-item-wrapper { + padding: 3px 4px; +} +input[type="text"] { + background-image:url('glass.svg'); + background-size:13px; + background-repeat:no-repeat; + background-position:3px 4px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + border-radius: 4px; + padding-left:20px; + padding-right: 18px; + font-size: var(--nav-font-size); + height: 19px; +} +input#page-search-input { + width: calc(180px + 10vw); + margin: 10px 0; +} +input#search-input { + width: 270px; + margin: 0; +} +input.filter-input { + min-width: 40px; + width: 180px; + margin: 0 -8px 0 5px; +} +input#reset-search, input.reset-filter, input#page-search-reset { + background-color: transparent; + background-image:url('x.svg'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + min-width:12px; + min-height:12px; + font-size:0; + visibility:hidden; +} +input#reset-search { + position:absolute; + right:5px; + top:7px; +} +input.reset-filter { + position: relative; + right: 10px; + top: 0; +} +input#page-search-reset { + position: relative; + right: 18px; + top: -5px; +} +input::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +input:focus::placeholder { + color: transparent; +} +select#search-modules { + margin: 0 10px 10px 2px; + font-size: var(--nav-font-size); + padding: 3px 5px; + border-radius: 4px; + background: #f0f0f0; + border: 1px solid #909090; +} +kbd { + background-color: #eeeeee; + border: 1px solid #b0b0b0; + border-radius: 3px; + padding: 0 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 0 0 rgba(255, 255, 255, 0.6) inset; + font-size: 0.9em; + font-weight: bold; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +dd > span:target, +h1 > span:target { + background-color: var(--search-tag-highlight-color); +} +section.class-description dd > span:target, +section.class-description h1 > span:target { + scroll-margin-top: 20em; +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +#result-container .result-highlight { + font-weight:bold; +} +#result-container div.result-table { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); +} +#result-container div.result-table > div.table-header, +#result-container div.result-table > a.search-result-link { + display: grid; + grid-template-columns: subgrid; + grid-column: 1 / 3; + margin: 0; +} +#result-container div.result-table > div.table-header > span { + padding: 5px 12px; + font-size: 0.93em; + background-color: var(--subnav-background-color); +} +#result-container div.result-table > a.search-result-link > span { + padding: 8px 12px; +} +#result-container div.result-table > a.search-result-link:nth-child(odd) { + background-color: var(--odd-row-color) +} +#result-container div.result-table > a.search-result-link:nth-child(even) { + background-color: var(--even-row-color) +} +#result-container div.result-table > a.search-result-link { + color: var(--block-text-color); + white-space: nowrap; +} +#result-container div.result-table > a.search-result-link:focus-visible, +#result-container div.result-table > a.search-result-link.selected { + background-color: var(--selected-background-color); + outline: none; +} +#result-container div.result-table > a.search-result-link .search-result-label { + overflow: hidden; + text-overflow: ellipsis; +} +#result-container div.result-table > a.search-result-link .search-result-desc { + font-size: var(--nav-font-size); + color: #404040; + overflow: hidden; + text-overflow: ellipsis; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + margin: 8px 0; + overflow: hidden; + display: none; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 5; +} +.horizontal-scroll { + overflow: auto hidden; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"] { + margin-bottom: 24px; + background-color: var(--section-background-color); +} +body.class-uses section.detail { + padding: 0 25px 5px 10px; + margin: 25px 0; +} +section.serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--detail-block-color); +} +section.serialized-class-details .detail { + overflow: auto; + padding-left: 12px; +} +section[class$="-details"] .detail { + background-color:var(--detail-background-color); +} +section[class$="-details"] .detail > div { + padding-left: 8px; +} +.inherited-list { + margin: 20px 0; + background-color:var(--detail-background-color); +} +.inherited-list > code { + padding: 8px; + display: block; + background-color: var(--code-background-color); + border-radius: 0; + line-height: var(--code-line-height); +} +.vertical-separator { + padding: 0 5px; +} +.help-section { + font-size: var(--block-font-size); + line-height: var(--block-line-height); +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s 0.1s; +} +:hover > a.anchor-link { + opacity: 90%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + font-size: var(--nav-font-size); + line-height: 1.2; + padding:0.3em; + background-color: transparent; + border: 1px solid transparent; + border-radius: 3px; + position: relative; + opacity: 80%; + transition: all 0.1s ease; + cursor: pointer; +} +button.copy:hover, +button.copy:active, +button.copy:focus, +button.copy.visible { + opacity: 100%; + background-color: inherit; + border-color: var(--button-border-color); + filter: var(--button-focus-filter); +} +button.copy:active { + filter: var(--button-active-filter); +} +button.copy img { + position: relative; +} +button.copy span { + color: var(--body-text-color); + position: relative; + padding: 0.2em; + top: -0.1em; + transition: opacity 0.1s ease; + opacity: 0; +} +button.copy:hover span, +button.copy:focus span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + top: -0.18em; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 4px; + right: 1px; + height: 32px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 2px 0; +} +button.snippet-copy span { + top: -7px; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Media queries for responsive design + */ +@media (prefers-reduced-motion: reduce) { + :root { + scroll-behavior: auto; + } +} +@media screen and (max-width: 1200px) { + input#search-input { + width: 22.5vw; + } +} +@media screen and (max-width: 1000px) { + .main-grid nav.toc { + display: none; + } + .top-nav nav.toc { + display: none; + position: absolute; + top: var(--top-nav-height); + left: 40vw; + width: 60vw; + z-index: 7; + background-color: var(--toc-background-color); + box-sizing: border-box; + } + .top-nav nav.toc div.toc-header { + padding: 6px 15px; + font-size: 0.94em; + background-color: var(--toc-background-color); + top: calc(var(--top-nav-height) + 10px); + } + .top-nav nav.toc ol.toc-list li { + font-size: 1.04em; + } + nav.toc a:link, nav.toc a:visited { + text-decoration:none; + color:var(--link-color); + } + nav.toc a[href]:hover, nav.toc a[href]:focus { + text-decoration:none; + color:var(--link-color-active); + } + :root { + scroll-behavior: auto; + } + header { + max-height: 100vh; + overflow-y: visible; + overscroll-behavior: contain; + } + nav { + overflow: visible; + } + ul.nav-list { + display: none; + position: absolute; + top: var(--top-nav-height); + overflow: auto; + z-index: 7; + background-color: var(--navbar-background-color); + width: 40%; + padding: 0; + box-sizing: border-box; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + .top-nav div.nav-menu-button { + flex: 1 1 auto; + } + .sub-nav ol.sub-nav-list { + margin-left: 4px; + padding-left: 4px; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 4px 0; + border-radius: 2px; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } + .ui-autocomplete { + display: block; + grid-template-columns: none; + } + .ui-autocomplete > li, + .ui-autocomplete > li > div, + .ui-autocomplete > li.result-item, + .ui-autocomplete > li.result-item > div { + grid-column: unset; + display: block; + grid-template-columns: none; + } + .ui-autocomplete > li.result-item { + line-height: 1.45; + } + .ui-autocomplete .search-result-label { + display: block; + } + .ui-autocomplete .search-result-desc { + display: block; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding: 0 16px; + max-width: 90%; + } + ul.nav-list li { + margin-left: 5px; + } + main { + padding: 10px 12px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 600px) { + .nav-list-search > a { + display: none; + } + .member-signature { + white-space: pre-line; + } + .member-signature .annotations { + white-space: pre-wrap; + } + input#search-input { + width: 18vw; + } + .inherited-list h3 { + overflow: auto clip; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0; + } +} +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 12px; +} +div.snippet-container { + position: relative; + padding-right: 30px; + background-color: var(--snippet-background-color); +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav, .main-grid nav.toc, button.copy { + display:none; + } +} diff --git a/doc/resource-files/x.svg b/doc/resource-files/x.svg new file mode 100644 index 0000000..1efb410 --- /dev/null +++ b/doc/resource-files/x.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/doc/script-files/jquery-3.7.1.min.js b/doc/script-files/jquery-3.7.1.min.js new file mode 100644 index 0000000..7f37b5d --- /dev/null +++ b/doc/script-files/jquery-3.7.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0{"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(x){x.ui=x.ui||{};x.ui.version="1.14.1";var n,s,C,k,o,l,a,r,u,i,h=0,c=Array.prototype.hasOwnProperty,d=Array.prototype.slice;x.cleanData=(n=x.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=x._data(i,"events"))&&e.remove&&x(i).triggerHandler("remove");n(t)}),x.widget=function(t,i,e){var s,n,o,l,a={},r=t.split(".")[0];return"__proto__"===(t=t.split(".")[1])||"constructor"===t?x.error("Invalid widget name: "+t):(l=r+"-"+t,e||(e=i,i=x.Widget),Array.isArray(e)&&(e=x.extend.apply(null,[{}].concat(e))),x.expr.pseudos[l.toLowerCase()]=function(t){return!!x.data(t,l)},x[r]=x[r]||{},s=x[r][t],n=x[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},x.extend(n,s,{version:e.version,_proto:x.extend({},e),_childConstructors:[]}),(o=new i).options=x.widget.extend({},o.options),x.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"!=typeof s?s:function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}}),n.prototype=x.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(x.each(s._childConstructors,function(t,e){var i=e.prototype;x.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),x.widget.bridge(t,n),n)},x.widget.extend=function(t){for(var e,i,s=d.call(arguments,1),n=0,o=s.length;n",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n{var i=[];n.element.each(function(t,e){x.map(l.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),l._on(x(i),{remove:"_untrackClassesElement"})})(),x(x.uniqueSort(i.get().concat(n.element.get())))):x(i.not(n.element).get()),l.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=x.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;x.each(s.classesElementLookup,function(t,e){-1!==x.inArray(i.target,e)&&(s.classesElementLookup[t]=x(e.not(i.target).get()))}),this._off(x(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,e={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return e.element.toggleClass(this._classes(e),s),this},_on:function(n,o,t){var l,a=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=l=x(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,l=this.widget()),x.each(t,function(t,e){function i(){if(n||!0!==a.options.disabled&&!x(this).hasClass("ui-state-disabled"))return("string"==typeof e?a[e]:e).apply(a,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||x.guid++);var t=t.match(/^([\w:-]*)\s*(.*)$/),s=t[1]+a.eventNamespace,t=t[2];t?l.on(s,t,i):o.on(s,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=x(this.bindings.not(t).get()),this.focusable=x(this.focusable.not(t).get()),this.hoverable=x(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(x(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(x(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=x.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},x.each({show:"fadeIn",hide:"fadeOut"},function(o,l){x.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||l:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!x.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&x.effects&&x.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){x(this)[o](),i&&i.call(e[0]),t()})}}),x.widget;function E(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function T(t,e){return parseInt(x.css(t,e),10)||0}function W(t){return null!=t&&t===t.window}C=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,a=/[\+\-]\d+(\.[\d]+)?%?/,r=/^\w+/,u=/%$/,i=x.fn.position,x.position={scrollbarWidth:function(){var t,e,i;return void 0!==s?s:(i=(e=x("
")).children()[0],x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i)},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(k(s),k(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})):i.apply(this,arguments)},x.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,s=s.width,o=t.left-e.collisionPosition.marginLeft,l=n-o,a=o+e.collisionWidth-s-n;s",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(this.document[0].activeElement);!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active)&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]!==i[0])||i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),t=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(t,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),e=(i=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(i,"ui-menu-item")._addClass(e,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(e=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,i=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-e-i,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&"true"===this.element.prop("contentEditable"),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)i=!1,this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault();else if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){n?(n=!1,t.preventDefault()):this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("