Bonjour!
Voilà le fichier Panneau.java :
import javax.swing.*;
import java.awt.*;
public class Panneau extends JPanel
{
//Méthode de construction
public Panneau(LayoutManager layout, boolean isDoubleBuffered, int Longueur, int Largeur)
{
setSize(Longueur, Largeur);
}
//Méthode d'instance
public void paintComponent(Graphics g)
{
}
}
et voilà le fichier Test.java :
import java.awt.*;
public class Test
{
public static void main(String []args)
{
JFrame Test = new Cadre("Test", 800, 600);
JPanel Pono = new Panneau(FlowLayout, true, 800, 300);
Test.getContentPane().add(Pono);
Test.show();
}
}
Et voilà mon erreur de compilation du fichier Test.java :
Test.java:10: cannot resolve symbol
symbol : variable FlowLayout
location: class Test
JPanel Pono = new Panneau(FlowLayout, true, 800, 300);
^
1 error
Je sèche! Pkoi y veut pas de mon Flowlayout?