Création javadoc et modification commentaires

This commit is contained in:
NonoL3Robot
2021-12-09 01:07:26 +01:00
parent 53b7bc9fbe
commit 7383c196ad
67 changed files with 5488 additions and 2 deletions
+2 -1
View File
@@ -37,9 +37,10 @@ public class Fenetre extends JFrame {
/** Le document PDF courant */
public PDF documentPDF;
/** Défini la disposition d'affichage des pages du document PDF */
/** Définit la disposition d'affichage des pages du document PDF */
private boolean affichageVertical;
/** Définit l'état de la fenêtre, true si la fenêtre est en plein écran */
private boolean fullscreen;
/**
+3 -1
View File
@@ -36,7 +36,9 @@ public class PDF extends JPanel {
* Crée un document PDF affichable dans une fenêtre
*
* @param fichier Le fichier que lon veut ouvrir
* @throws IllegalArgumentException si le fichier nexiste pas
* @param vertical booléen si true, affiche les pages en vertical,
* sinon horizontal
* @throws IOException si le fichier nexiste pas
*/
public PDF(File fichier, boolean vertical) throws IOException {
document = PDDocument.load(fichier);