IFace Node = g.interfaceTable.get("Node");
//////
// External Input to Grammar ---------------------------------------------------------------------------
AleSimulatorNode AleTop = new AleSimulatorNode(TopBox);
AleSimulatorNode VBoxOne = new AleSimulatorNode(VBox);
AleSimulatorNode VBoxTwo = new AleSimulatorNode(VBox);
AleSimulatorNode LeafOne = new AleSimulatorNode(LeafBox);
AleSimulatorNode LeafTwo = new AleSimulatorNode(LeafBox);
AleSimulatorNode LeafThree = new AleSimulatorNode (LeafBox);
AleTop.addChild("root", Node, VBoxOne);
VBoxOne.addChild("child1", Node, VBoxTwo);
VBoxOne.addChild("child2", Node, LeafOne);
VBoxTwo.addChild("child1", Node, LeafTwo);
VBoxTwo.addChild("child2", Node, LeafThree);