List of usage examples for com.intellij.openapi.actionSystem TypeSafeDataProvider calcData
void calcData(@NotNull DataKey key, @NotNull DataSink sink);
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*/ }