Class JComponentList.ListCellRenderer

    • Constructor Detail

      • ListCellRenderer

        public ListCellRenderer()
        Initializes the renderer.
    • Method Detail

      • getListCellRendererComponent

        public Component getListCellRendererComponent​(JList list,
                                                      Object value,
                                                      int index,
                                                      boolean isSelected,
                                                      boolean cellHasFocus)
        Return a component that has been configured to display the specified value.
        Specified by:
        getListCellRendererComponent in interface ListCellRenderer<Object>
        Overrides:
        getListCellRendererComponent in class DefaultListCellRenderer
        Parameters:
        list - The JList we're painting.
        value - The value returned by list.getModel().getElementAt(index).
        index - The cells index.
        isSelected - True if the specified cell was selected.
        cellHasFocus - True if the specified cell has the focus.
        Returns:
        A component whose paint() method will render the specified value.