Java Reference
In-Depth Information
LISTING 7.19
//********************************************************************
// IntroPanel.java Author: Lewis/Loftus
//
// Represents the introduction panel for the LayoutDemo program.
//********************************************************************
import java.awt.*;
import javax.swing.*;
public class IntroPanel extends JPanel
{
//-----------------------------------------------------------------
// Sets up this panel with two labels.
//-----------------------------------------------------------------
public IntroPanel()
{
setBackground (Color.green);
JLabel l1 = new JLabel ("Layout Manager Demonstration");
JLabel l2 = new JLabel ("Choose a tab to see an example of " +
"a layout manager.");
add (l1);
add (l2);
}
}
DISPLAY
Search WWH ::




Custom Search