Example usage for javax.swing DefaultListModel lastIndexOf

List of usage examples for javax.swing DefaultListModel lastIndexOf

Introduction

In this page you can find the example usage for javax.swing DefaultListModel lastIndexOf.

Prototype

public int lastIndexOf(Object elem, int index) 

Source Link

Document

Searches backwards for elem , starting from the specified index, and returns an index to it.

Usage

From source file:Main.java

public static void main(final String args[]) {
    String labels[] = { "A", "B", "C", "D", "E" };
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    DefaultListModel model = new DefaultListModel();
    model.ensureCapacity(1000);//from  ww w. j  a v  a 2 s  .  co  m
    for (int i = 0; i < 100; i++) {
        for (int j = 0; j < 5; j++) {
            model.addElement(labels[j]);
        }
    }
    System.out.println(model.lastIndexOf("A", 0));

    JList jlist2 = new JList(model);
    jlist2.setVisibleRowCount(4);
    jlist2.setFixedCellHeight(12);
    jlist2.setFixedCellWidth(200);
    JScrollPane scrollPane2 = new JScrollPane(jlist2);
    frame.add(scrollPane2, BorderLayout.CENTER);

    frame.setSize(300, 350);
    frame.setVisible(true);
}