addAll

fun addAll(vararg components: T)

Adds all ComponentViews passed as varargs to this Pane.

Whenever a ComponentView is encountered, that is already contained, an IllegalArgumentException is thrown and no further ComponentView is added.

Parameters

components

Vararg ComponentViews to add.

Throws


fun addAll(collection: Collection<T>)

Adds all ComponentViews contained in collection to this Pane.

Whenever an ComponentView is encountered, that is already contained, an IllegalArgumentException is thrown and no further ComponentView is added.

Parameters

collection

Collection containing the ComponentViews to add.

Throws