Bonjour
voila j'utilise une version d'eclipse que mon prof ma donner
eclipse3.1
et j'essaye de finir mon 1er TP chez moi visuel class un programme qui calcule le nombre de jour entre deux date
je l'ai pas encore fini
mais je veux compiler juste pour voir si sa marche ou pas mais j'arrive pas

j'ai comme réponse une fenêtre
"la configuration de lancement TP1références un projet test qui n'existe pas"
en plus il y a plein de petit ampoule devant certain ligne de mon code
voila mon code
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package p1;
 
import java.awt.event.KeyEvent;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.Event;
import java.awt.BorderLayout;
import javax.swing.KeyStroke;
import javax.swing.JPanel;
import javax.swing.JMenuItem;
import javax.swing.JMenuBar;
import javax.swing.JMenu;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import javax.swing.JSplitPane;
import javax.swing.JTabbedPane;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.JTextArea;
 
public class Test extends JFrame {
 
    private JPanel jContentPane = null;
    private JLabel jLabel = null;
    private JTextField jTextField = null;
    private JLabel jLabel1 = null;
    private JTextField jTextField1 = null;
    private JButton jButton = null;
    private JLabel jLabel2 = null;
    /**
     * This is the default constructor
     */
    public Test() {
        super();
        initialize();
    }
 
    /**
     * This method initializes this
     * 
     * @return void
     */
    private void initialize() {
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setResizable(true);
        this.setSize(339, 175);
        this.setContentPane(getJContentPane());
        this.setTitle("tp1");
    }
 
    /**
     * This method initializes jContentPane
     * 
     * @return javax.swing.JPanel
     */
    private JPanel getJContentPane() {
        if (jContentPane == null) {
            jLabel2 = new JLabel();
            jLabel2.setText(" ");
            jLabel1 = new JLabel();
            jLabel1.setText("Date 2");
            jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
            jLabel = new JLabel();
            jLabel.setText("Date 1");
            jLabel.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
            GridLayout gridLayout = new GridLayout();
            gridLayout.setRows(3);
            gridLayout.setHgap(5);
            gridLayout.setVgap(5);
            gridLayout.setColumns(2);
            jContentPane = new JPanel();
            jContentPane.setLayout(gridLayout);
            jContentPane.add(jLabel, null);
            jContentPane.add(getJTextField(), null);
            jContentPane.add(jLabel1, null);
            jContentPane.add(getJTextField1(), null);
            jContentPane.add(getJButton(), null);
            jContentPane.add(jLabel2, null);
        }
        return jContentPane;
    }
 
    /**
     * This method initializes jTextField    
     *     
     * @return javax.swing.JTextField    
     */
    private JTextField getJTextField() {
        if (jTextField == null) {
            jTextField = new JTextField();
        }
        return jTextField;
    }
 
    /**
     * This method initializes jTextField1    
     *     
     * @return javax.swing.JTextField    
     */
    private JTextField getJTextField1() {
        if (jTextField1 == null) {
            jTextField1 = new JTextField();
        }
        return jTextField1;
    }
 
    /**
     * This method initializes jButton    
     *     
     * @return javax.swing.JButton    
     */
    private JButton getJButton() {
        if (jButton == null) {
            jButton = new JButton();
            jButton.setText("Calculer!");
        }
        return jButton;
    }
 
    /**
     * Launches this application
     */
    public static void main(String[] args) {
        Test application = new Test();
        application.show();
    }
 
}  //  @jve:decl-index=0:visual-constraint="33,26"