use of org.sonarlint.intellij.ui.nodes.LocationNode in project sonarlint-intellij by SonarSource.
the class AbstractIssuesPanel method flowsTreeSelectionChanged.
protected void flowsTreeSelectionChanged() {
LocationNode[] selectedNodes = flowsTree.getSelectedNodes(LocationNode.class, null);
if (selectedNodes.length > 0) {
LocationNode node = selectedNodes[0];
highlighting.highlightFlowsWithHighlightersUtil(node.rangeMarker(), node.message(), Collections.emptyList());
}
}
Aggregations