/* Daniel Shiffman               *//* Programming from A to Z       *//* Spring 2006                   *//* http://www.shiffman.net       *//* daniel.shiffman@nyu.edu       */package basics;// Traverse any generic XML document// Import the necessary librariesimport java.io.IOException;import a2z.*;public class XMLTraverse {    public static void main (String argv []) throws IOException{           A2ZXMLHelper xmlreader = new A2ZXMLHelper("http://xml.weather.yahoo.com/forecastrss?p=USNY0996");        xmlreader.traverseXML(xmlreader.getRoot());    }    }