Example usage for com.intellij.openapi.ui.popup ListPopupStep getValues

List of usage examples for com.intellij.openapi.ui.popup ListPopupStep getValues

Introduction

In this page you can find the example usage for com.intellij.openapi.ui.popup ListPopupStep getValues.

Prototype

@NotNull
List<T> getValues();

Source Link

Document

Returns the values to be displayed in the list popup.

Usage

From source file:com.intellij.ui.popup.list.ListPopupModel.java

License:Apache License

public ListPopupModel(ElementFilter filter, SpeedSearch speedSearch, ListPopupStep step) {
    myFilter = filter;//from   w w w.  ja  va2 s. co m
    myStep = step;
    mySpeedSearch = speedSearch;
    myOriginalList = new ArrayList<Object>(step.getValues());
    rebuildLists();
}