MaFenetre.java

Go to the documentation of this file.
00001 import java.awt.*;
00002 import java.awt.event.*;
00003 
00004 public class MaFenetre extends Frame
00005 {
00006   private MonPanneau p;
00007         
00008   public MaFenetre()
00009   {
00010     super("Mon Titre"); // invocation du constructeur de Frame
00011     p=new MonPanneau();
00012     this.setLayout(new FlowLayout());
00013     this.add(p);
00014     this.pack();
00015     this.addWindowListener(new WCloser());
00016   }
00017 }

Generated on Sun Mar 4 15:03:58 2007 for Scilab [trunk] by  doxygen 1.5.1