* is called.
*/
synchronized void parse (InputStream is) throws Exception {
values = new Stack ();
long now = System.currentTimeMillis ();
MinML parser = new MinML ();
parser.setDocumentHandler (this);
parser.setErrorHandler (this);
parser.parse (new InputSource (is));
if (debug)
System.out.println ("Spent "+(System.currentTimeMillis () - now)+" parsing");
}