Java Swing Tutorial - Java DefaultListSelectionModel .getAnchorSelectionIndex ()








Syntax

DefaultListSelectionModel.getAnchorSelectionIndex() has the following syntax.

public int getAnchorSelectionIndex()

Example

In the following code shows how to use DefaultListSelectionModel.getAnchorSelectionIndex() method.

import java.awt.BorderLayout;
/*from www  .j  a v  a2s .  c o  m*/
import javax.swing.DefaultListSelectionModel;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

public class Main extends JPanel {

  String label[] = { "Zero", "One", "Two" };

  JList list;

  public Main() {
    setLayout(new BorderLayout());

    list = new JList(label);
    JScrollPane pane = new JScrollPane(list);

    DefaultListSelectionModel m = new DefaultListSelectionModel();
    
    list.setSelectionModel(m);

    System.out.println(m.getAnchorSelectionIndex());
    
    add(pane, BorderLayout.NORTH);
  }

  public static void main(String s[]) {
    JFrame frame = new JFrame("List Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new Main());
    frame.pack();
    frame.setVisible(true);
  }

}