Dart Documentationangular.core.domBlockHole

BlockHole class

A BlockHole is an instance of a hole. BlockHoles designate where child Blocks can be added in parent Block. BlockHoles wrap a DOM element, and act as references which allows more blocks to be added.

class BlockHole extends ElementWrapper {
 List<dom.Node> elements;

 ElementWrapper previous;

 ElementWrapper next;

 BlockHole(List<dom.Node> this.elements);
}

Extends

ElementWrapper > BlockHole

Constructors

new BlockHole(List<Node> elements) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
BlockHole(List<dom.Node> this.elements);

Properties

List<Node> elements #

List<dom.Node> elements

ElementWrapper next #

ElementWrapper next

ElementWrapper previous #

ElementWrapper previous