Global Variables

      09         A   B   C   D   E   F   G   H   I

Add these to the list of Global Variables.
They define the size of a nodes's rounded rectangle.


int   NODE_w = 100;     // width
int   NODE_h = 30;     // height
int   NODE_r = 15;     // end radius


An ArrayList is needed to hold the Node items.
Declare and define a Global Variable named nodes.


ArrayList nodes = new ArrayList();