Component

The process Component is a basic container for other processes. Children can be added to it by using braces. Its children can be reached by their name through a dotted notation.

Constructor

Component <id>

Action

Activates all its children from top to bottom, in-depth first.

Predefined children

None

Example


Component root {
  Frame f ("Hello Interaction!", 0, 0, 500, 400)
  Exit quit (0, 1)
  f.close->quit
}