Example usage for com.intellij.openapi.ui.popup ListSeparator getText

List of usage examples for com.intellij.openapi.ui.popup ListSeparator getText

Introduction

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

Prototype

public String getText() 

Source Link

Usage

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

License:Apache License

public String getCaptionAboveOf(Object value) {
    ListSeparator separator = getSeparatorAbove(value);
    if (separator != null) {
        return separator.getText();
    }//from w  w w .  ja  v a  2 s  . c  o  m
    return "";
}