This commit is contained in:
NonoL3Robot
2021-12-07 22:12:03 +01:00
parent 23e2e8a1a7
commit 6aab31d3c6
+46
View File
@@ -0,0 +1,46 @@
/*
* 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
}
}