1 17 package org.columba.mail.gui.config.account; 18 19 import java.awt.Component ; 20 21 import javax.swing.DefaultListCellRenderer ; 22 import javax.swing.JList ; 23 24 import org.columba.mail.util.AuthenticationManager; 25 26 27 public class AuthenticationListCellRenderer extends DefaultListCellRenderer { 28 29 32 public Component getListCellRendererComponent(JList arg0, Object arg1, 33 int arg2, boolean arg3, boolean arg4) { 34 super.getListCellRendererComponent(arg0, arg1, arg2, arg3, arg4); 35 setText( AuthenticationManager.getLocalizedString(((Integer ) arg1).intValue())); 36 37 return this; 38 } 39 } 40 41 | Popular Tags |