1 7 8 package com.sun.java.swing.plaf.motif; 9 10 import javax.swing.*; 11 import javax.swing.plaf.basic.BasicLabelUI ; 12 import javax.swing.plaf.ComponentUI ; 13 14 28 public class MotifLabelUI extends BasicLabelUI  29 { 30 static MotifLabelUI sharedInstance = new MotifLabelUI(); 31 32 public static ComponentUI createUI(JComponent c) { 33 return sharedInstance; 34 } 35 } 36 | Popular Tags |