V4.5.0 ajoute un bouton à la boite d'évaluation des attributs au node.

Le bouton permettra d'ajouter un nouvelle attribut avec ses valeurs.
This commit is contained in:
pablo rodriguez 2024-04-11 20:43:12 +02:00
parent 9614184ac8
commit 4eb22b4ca2
22 changed files with 8 additions and 2 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -93,6 +93,13 @@ public class attributs extends JFrame {
public void actionPerformed(ActionEvent e) {
}
});
JButton btnAddAttribut = new JButton("Ajoute un attribut au node");
btnAddAttribut.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
panelBas.add(btnAddAttribut);
panelBas.add(btnNewButton);
JButton btnValide = new JButton("Valider les modifications");

View File

@ -136,7 +136,6 @@ public final class create extends JFrame {
private static create instance;
public static boolean isDispose = true;
private static JLabel lblInfo = new JLabel("Fichier d'analyse");
private final JButton btnAllContent = new JButton(new actAllContent());
private final JButton btnAttribut= new JButton(new actAttribut());