import java.awt.EventQueue; 
import java.awt.FlowLayout; 

import javax.swing.JFrame; 
import javax.swing.JLabel; 
import javax.swing.UIManager; 

public class FontBug extends JFrame 
{ 
   public FontBug() 
   { 
      super( System.getProperty( "java.runtime.version" ) ); 

      setDefaultCloseOperation( EXIT_ON_CLOSE ); 
      setLayout( new FlowLayout() ); 

      add( new JLabel( "Admin" ) ); 
      add( new JLabel( "Client" ) ); 
      add( new JLabel( "Identity" ) ); 
      add( new JLabel( "Implemented" ) ); 
      add( new JLabel( "without" ) ); 

      pack(); 
      setVisible( true ); 
   } 

   public static void main( String[] args ) 
   { 
      EventQueue.invokeLater( new Runnable() 
      { 
         @Override 
         public void run() 
         { 
            try 
            { 
               UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() ); 
            } 
            catch ( Exception e ) 
            { 
               e.printStackTrace(); 
            } 

            new FontBug(); 
         } 
      } ); 
   } 
} 
