mirror of
https://github.com/LucasVbr/LecteurPdfDoubleAffichage.git
synced 2026-05-16 17:11:50 +00:00
rename
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user