mirror of
https://github.com/LucasVbr/LecteurPdfDoubleAffichage.git
synced 2026-05-14 09:05:29 +00:00
47 lines
885 B
Java
47 lines
885 B
Java
/*
|
|
* KeyBinding.java, 18/11/2021
|
|
* IUT Rodez 2021-2021, INFO2
|
|
* pas de copyright, aucun droits
|
|
*/
|
|
|
|
package lecteur_pdf.menu;
|
|
|
|
import javax.swing.*;
|
|
import java.util.ArrayList;
|
|
|
|
/**
|
|
* TODO class comment
|
|
*
|
|
* @author Léo FRANCH
|
|
* @author Tristan NOGARET
|
|
* @author Lucàs VABRE
|
|
* @author Noé VILLENEUVE
|
|
* @version 1.0
|
|
*/
|
|
public class KeyBinding {
|
|
|
|
/* Déclaration des éléments visuels */
|
|
JFrame KeyBinding = new JFrame();
|
|
JLabel label = new JLabel();
|
|
|
|
/* Déclaration des listes */
|
|
ArrayList<String> listeOptions;
|
|
ArrayList<KeyStroke> listeRaccourcis;
|
|
|
|
/**
|
|
* TODO commenter la méthode
|
|
*/
|
|
public void KeyBinding() {
|
|
// TODO
|
|
}
|
|
|
|
/**
|
|
* TODO commenter la méthode
|
|
* @param key
|
|
* @param menuItem
|
|
*/
|
|
public void setMenuItemAccelerator(KeyStroke key, JMenuItem menuItem) {
|
|
// TODO
|
|
}
|
|
}
|