Project 1

cscie259.project1.mf
Class DOMWalker

java.lang.Object
  extended bycscie259.project1.mf.DOMWalker

public abstract class DOMWalker
extends java.lang.Object

A class whose sole purpose in life is to walk your DOM. You MAY modify this file so that it handles your implementation of attributes.

Version:
6.0
Author:
Computer Science E-259, YOUR NAME GOES HERE

Constructor Summary
DOMWalker()
           
 
Method Summary
static void walk(Document doc, ContentHandler handler)
          Initiates a walk on given document, passing SAX events to handler.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DOMWalker

public DOMWalker()
Method Detail

walk

public static void walk(Document doc,
                        ContentHandler handler)
Initiates a walk on given document, passing SAX events to handler.

Parameters:
doc - document's topmost node
handler - ContentHandler for SAX events

Project 1