This article is continuation of previous post JFrame usage demo . Please read it before continuing. This post uses the same example code shown in JFrame usage demo with JLabel changes and introduces layout manager BorderLayout. Layout Manager: Layout manager is responsible to arrange components on containers. Usually every swing container is created with a default layout manager but can be changed with setLayout() api. For example JFrame uses BorderLayout as default layout amanger. Java program for JLabel 1 2 import java.awt.BorderLayout; 3 import java.awt.Color; 4 import java.awt.Font; 5 6 import javax.swing.JFrame; 7 import javax.swing.JLabel; 8 import javax.swing.SwingUtilities; 9 10 /** 11 * 12 * Simple class to demonstrate JLabel of swing toolkit 13 * 14 * @author Nagasharath 15 * 16 ...