[JAVA] Question sur Swing

Question sur Swing [JAVA] - Programmation

Marsh Posté le 12-01-2002 à 20:31:20    

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?

Reply

Marsh Posté le 12-01-2002 à 20:31:20   

Reply

Marsh Posté le 12-01-2002 à 21:12:59    

C bon j'ai trouvé... dsl!

Reply

Marsh Posté le 12-01-2002 à 22:53:57    

Swing, swang et swung ?


---------------
Le site de l'année :D (XHTML 1.0 strict) : http://darkoli.free.fr/index.html
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed