View Single Post
  #3 (permalink)  
Old 06-07-2007, 07:19 PM
levent levent is offline
Senior Member
 
Join Date: Dec 2006
Posts: 748
levent is on a distinguished road
Code:
import java.awt.*; import javax.swing.*; public class MultilineLabel { public static void main(String[] args) { String str = "This is \nmy example \nof a multi-line \nJLabel"; JLabel strLabel = new JLabel (str); display(strLabel, "Hmmm..."); } public static void display(JComponent comp, String title) { JFrame f = new JFrame(title); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(comp); f.pack(); f.setLocationRelativeTo(null); f.setVisible(true); } }
Reply With Quote