Source of HelloApplet.java


  1: 
  2: import javax.swing.*;
  3: import java.awt.*;//For Container class
  4: 
  5: public class HelloApplet extends JApplet
  6: {
  7:     public void init( )
  8:     {
  9:         Container contentPane = getContentPane( );
 10:         contentPane.setLayout(new FlowLayout( ));
 11:         JLabel friendlyLabel = new JLabel("Hello out there!");
 12:         contentPane.add(friendlyLabel);
 13:     }
 14: }