Package com.intellij.util.ui

Examples of com.intellij.util.ui.SortableColumnModel


  public java.util.List<Item> getItems() {
    return ((ListTableModel<Item>)getModel()).getItems();
  }

  protected void onHeaderClicked(int column) {
    SortableColumnModel model = getListTableModel();
    Collection selection = getSelection();
    model.sortByColumn(column);
    setSelection(selection);
  }
View Full Code Here

TOP

Related Classes of com.intellij.util.ui.SortableColumnModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.