1 21 22 package org.armedbear.j; 23 24 import java.awt.Graphics ; 25 import javax.swing.JLabel ; 26 27 public final class Label extends JLabel  28 { 29 public Label() 30 { 31 super(); 32 } 33 34 public Label(String text) 35 { 36 super(text); 37 } 38 39 public void paintComponent(Graphics g) 40 { 41 Display.setRenderingHints(g); 42 super.paintComponent(g); 43 } 44 } 45 | Popular Tags |