KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > nu > xom > samples > StreamingNodeLister


1 /* Copyright 2002-2004 Elliotte Rusty Harold
2    
3    This library is free software; you can redistribute it and/or modify
4    it under the terms of version 2.1 of the GNU Lesser General Public
5    License as published by the Free Software Foundation.
6    
7    This library is distributed in the hope that it will be useful,
8    but WITHOUT ANY WARRANTY; without even the implied warranty of
9    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10    GNU Lesser General Public License for more details.
11    
12    You should have received a copy of the GNU Lesser General Public
13    License along with this library; if not, write to the
14    Free Software Foundation, Inc., 59 Temple Place, Suite 330,
15    Boston, MA 02111-1307 USA
16    
17    You can contact Elliotte Rusty Harold by sending e-mail to
18    elharo@metalab.unc.edu. Please include the word "XOM" in the
19    subject line. The XOM home page is located at http://www.xom.nu/
20 */

21
22 package nu.xom.samples;
23
24 import java.io.IOException JavaDoc;
25
26 import nu.xom.Builder;
27 import nu.xom.Element;
28 import nu.xom.NodeFactory;
29 import nu.xom.Nodes;
30 import nu.xom.ParsingException;
31
32
33 /**
34  * <p>
35  * Non-recursive, streaming alternative to <code>NodeLister</code>.
36  * </p>
37  *
38  * @author Elliotte Rusty Harold
39  * @version 1.0
40  *
41  */

42 public class StreamingNodeLister extends NodeFactory {
43
44     private Nodes empty = new Nodes();
45
46   public static void main(String JavaDoc[] args) {
47   
48     if (args.length == 0) {
49       System.out.println(
50         "Usage: java nu.xom.samples.StreamingNodeLister URL"
51       );
52       return;
53     }
54       
55     Builder builder = new Builder(new StreamingNodeLister());
56      
57     try {
58       builder.build(args[0]);
59     }
60     // indicates a well-formedness error
61
catch (ParsingException ex) {
62       System.out.println(args[0] + " is not well-formed.");
63       System.out.println(ex.getMessage());
64     }
65     catch (IOException JavaDoc ex) {
66       System.out.println(ex);
67     }
68   
69   }
70   
71   private int depth = 0;
72
73     public Nodes makeComment(String JavaDoc data) {
74         printSpaces();
75         System.out.println("Comment");
76         return empty;
77     }
78
79     public Nodes makeText(String JavaDoc data) {
80         printSpaces();
81         System.out.println("Text");
82         return empty;
83     }
84
85     public Element startMakingElement(String JavaDoc name, String JavaDoc namespace) {
86         depth++;
87         printSpaces();
88         System.out.println("Element: " + name);
89         return super.startMakingElement(name, namespace);
90     }
91
92     public Nodes finishMakingElement(Element element) {
93         depth--;
94         return new Nodes(element);
95     }
96
97     public Nodes makeDocType(String JavaDoc rootElementName,
98       String JavaDoc publicID, String JavaDoc systemID) {
99         System.out.println("DOCTYPE");
100         return empty;
101     }
102
103     public Nodes makeProcessingInstruction(
104       String JavaDoc target, String JavaDoc data) {
105         printSpaces();
106         System.out.println("Processing instruction: " + target);
107         return empty;
108     }
109   
110   private void printSpaces() {
111     
112     for (int i = 0; i < depth; i++) {
113       System.out.print(' ');
114     }
115     
116   }
117
118 }
119
Popular Tags