import proxml.*; // imports the proxml library XMLInOut xml; // creates a variable named 'xml' that will hold an XMLInOut object void setup() { xml = new XMLInOut(this); // creates an XMLInOut object and stores it in the 'xml' variable xml.loadElement("http://www.charlie-roberts.com/259/recipe.xml"); // loads the xml file into the XMLInOut object stored in the variable 'xml' } void xmlEvent(XMLElement element) { // this method is called when the main (or root) xml element is finished loading. 'element' represents // ...this root xml element. XMLElement[] e; // create an array of XMLElements named 'e' String[] attributes; // create an array of Strings named 'attributes' e = element.getChildren(); // get all the child elements of the root element and store them in the array we just created for(int i=0; i Basic bread Flour Yeast Water Salt Mix all ingredients together, and knead thoroughly. Cover with a cloth, and leave for one hour in warm room. Knead again, place in a tin, and then bake in the oven. */