Project

General

Profile

« Previous | Next » 

Revision 129

renamed BasicElement to BasicNode

View differences:

ReaderElement.java
20 20
 * A Class that represents an XML element and its contents,
21 21
 * and can build itself from a database connection
22 22
 */
23
public class ReaderElement extends BasicElement {
23
public class ReaderElement extends BasicNode {
24 24

  
25 25
    private Connection	conn;
26 26

  
......
216 216
        } 
217 217

  
218 218
        // Process children recursively here
219
        BasicElement child = null;
219
        BasicNode child = null;
220 220
        Enumeration e = getChildren();
221 221
        while (e.hasMoreElements()) {
222
          child = (BasicElement)e.nextElement(); 
222
          child = (BasicNode)e.nextElement(); 
223 223
          value.append(child);
224 224
        }
225 225

  

Also available in: Unified diff