Example usage for com.intellij.openapi.actionSystem TypeSafeDataProvider calcData

List of usage examples for com.intellij.openapi.actionSystem TypeSafeDataProvider calcData

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem TypeSafeDataProvider calcData.

Prototype

void calcData(@NotNull DataKey key, @NotNull DataSink sink);

Source Link

Usage

From source file:com.intellij.util.xml.ui.DomTableView.java

License:Apache License

public void calcData(final Key<?> key, final DataSink sink) {
    super.calcData(key, sink);
    for (final TypeSafeDataProvider customDataProvider : myCustomDataProviders) {
        customDataProvider.calcData(key, sink);
    }/*  w ww  .  j  a va2s .  c o m*/
}