Valid XHTML     Valid CSS2    

Listing du fichier nbm1.txt

 

00001      import java.applet.*;
00002      import java.awt.*;
00003     
00004      public class nbm1 extends java.applet.Applet {
00005     
00006        public void paint(Graphics g) {
00007            g.drawString(" Bonjour",20,30) ;
00008        } ; // fin de paint
00009     
00010      } ; // fin de classe
00011     
00012     ===========================================================================================
00013     
00014      import java.applet.*;
00015      import java.awt.*;
00016     
00017      public class nbm1a extends java.applet.Applet {
00018     
00019        Font   maf    ;
00020        String txt    = " Bonsoir " ;
00021        int    taille   = 14 ;
00022     
00023        public void init() {
00024          setBackground(Color.lightGray) ;
00025          maf    = new Font("Helvetica",Font.BOLD,taille) ;
00026        } ; // fin de init
00027     
00028        public void paint(Graphics g) {
00029            g.setFont(maf) ;
00030            g.setColor(Color.red) ;
00031            g.drawString(txt,20,30) ;
00032        } ; // fin de paint
00033     
00034      } ; // fin de classe
00035     
00036     ===========================================================================================
00037     
00038      import java.applet.*;
00039      import java.awt.*;
00040     
00041      public class nbm1b extends java.applet.Applet {
00042     
00043        Label slt = new Label(" Slt !") ;
00044     
00045        public void init() {
00046          add(slt) ;
00047        } ; // fin de init
00048     
00049      } ; // fin de classe
00050     
00051     ===========================================================================================
00052     
00053      import java.applet.*;
00054      import java.awt.*;
00055     
00056      public class nbm1c extends java.applet.Applet {
00057     
00058        Label slt1 = new Label(" Slt !") ;
00059        Label slt2 = new Label(" au revoir.") ;
00060        Panel lig1 = new Panel() ;
00061        Panel lig2 = new Panel() ;
00062     
00063        public void init() {
00064          setLayout( new GridLayout(2,1)) ;
00065          add(lig1) ;
00066          add(lig2) ;
00067          lig1.add(slt1) ;
00068          lig2.add(slt2) ;
00069        } ; // fin de init
00070     
00071      } ; // fin de classe
00072     
00073     ===========================================================================================

 

 

retour gH    Retour à la page principale de   (gH)