{
// Create an instance of this class to work with.
CatalogXsd catalogxsd = new CatalogXsd();
// Create an instance of a type based on the received XML's schema
CatalogDocument catdoc = catalogxsd.parseXml(args[0]);
//Prints the element values from the XML.
catalogxsd.printElements(catdoc);
}