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

editor.util.LabelListCellRenderer Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.util;


import editor.AbstractListCellRenderer;
import javax.swing.*;
import java.beans.BeanInfo;

/**
 */
public class LabelListCellRenderer extends AbstractListCellRenderer
{
  public LabelListCellRenderer( JComponent list )
  {
    super( list, true );
  }

  @Override
  public void configure()
  {
    ILabel label = getNode();
    if( label == null )
    {
      setText( "" );
    }
    else
    {
      setText( label.getDisplayName() );
      setIcon( label.getIcon( BeanInfo.ICON_COLOR_16x16 ) );
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy