1 30 31 package com.jgoodies.forms.factories; 32 33 import javax.swing.JComponent ; 34 import javax.swing.JLabel ; 35 36 45 46 public interface ComponentFactory { 47 48 54 public JLabel createLabel(String textWithMnemonic); 55 56 57 64 public JLabel createTitle(String textWithMnemonic); 65 66 67 76 public JComponent createSeparator(String text, int alignment); 77 78 79 } | Popular Tags |