filterProperties abstract method

List<DiagnosticsNode> filterProperties(
  1. List<DiagnosticsNode> nodes,
  2. DiagnosticsNode owner
)

Filters the list of DiagnosticsNodes that will be included as properties for the given owner node.

The callback may return a subset of the properties in the provided list or replace the entire list with new property nodes.

By default, nodes is returned as-is.

See also:

Implementation

List<DiagnosticsNode> filterProperties(List<DiagnosticsNode> nodes, DiagnosticsNode owner);