All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.alantea.xmessages.XListCellRenderer Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package net.alantea.xmessages;

import java.awt.Component;

import javax.swing.DefaultListCellRenderer;
import javax.swing.JList;

@SuppressWarnings("serial")
public class XListCellRenderer extends DefaultListCellRenderer
{
   @Override
   public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected,
         boolean cellHasFocus)
   {
      return super.getListCellRendererComponent(list, XMessages.get((value == null) ? " " : value.toString()), index, isSelected, cellHasFocus);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy