comments property

Array<Node> get comments

Gets or sets an array of Nodes that will be positioned near this node.

The default value is null.

These objects should not have their own TreeVertexes to be laid out. Typically these will be Nodes whose Category is "Comment". This array should be allocated and initialized in TreeLayout#addComments.

Implementation

_i7.Array<_i3.Node> get comments => _i4.getProperty(
      this,
      'comments',
    );
set comments (Array<Node> value)

Implementation

set comments(_i7.Array<_i3.Node> value) {
  _i4.setProperty(
    this,
    'comments',
    value,
  );
}