Code java script

Résolu/Fermé
kasdallah mounir Messages postés 4 Date d'inscription lundi 1 avril 2013 Statut Membre Dernière intervention 2 avril 2013 - 1 avril 2013 à 14:28
 Utilisateur anonyme - 2 avril 2013 à 14:20
Bonjour,je trouve au niveau compilation à mon code suivant"import java.awt.Color;
import java.awt.Font;
import java.awt.Rectangle;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.TitledBorder;



public class Roussia extends JFrame {
private static final long serialVersionUID = 1L;
@SuppressWarnings("unused")
private JPanel jContentPane = null;
private JPanel jPanel = null;
private JLabel jLabel=null;
private JTextField jTextField = null;
/**
* @wbp.nonvisual location=41,59
*/
@SuppressWarnings("unused")
private final JLabel label = new JLabel("New label");
@SuppressWarnings("unused")
private JPanel getJPanel(){
if(jPanel == null){
jLabel = new JLabel();
jLabel.setBounds(new Rectangle(24,33,39,23));
jLabel.setText("Code");
jPanel = new JPanel();
jPanel.setLayout(null);

jPanel.setBounds(new Rectangle(5,9,656,369));
jPanel.setBorder(BorderFactory.createTitledBorder(null,"dfddddd",TitledBorder.DEFAULT_JUSTIFICATION,TitledBorder.DEFAULT_POSITION,new Font("Dialog",Font.BOLD,12),new Color(51,51,51)));
jPanel.add(jLabel,null);
jPanel.add(getJTextField(), null);
}
return jPanel;

}
private JTextField getJTextField(){
if(jTextField == null){
jTextField = new JTextField();
jTextField.setBounds(new Rectangle(169,29,160,25));
}
return jTextField;
}


public static void main(String[] args){
Roussia thisClass = new Roussia();

thisClass.setVisible(true);

}
public Roussia(){
super();
initiaze();

}
private void initiaze(){
this.setSize(689, 421);
this.setContentPane(getContentPane());
}}







A voir également:

1 réponse

Utilisateur anonyme
1 avril 2013 à 14:32
Tu ajoute "import java.awt.Color" en haut de ton code avec tout tes import
0
Utilisateur anonyme
2 avril 2013 à 14:20
Et de rien
0