Project

General

Profile

« Previous | Next » 

Revision 31

Added by Matt Jones about 24 years ago

documentation additions

View differences:

DBSAXNode.java
15 15
import java.util.Hashtable;
16 16
import java.util.Enumeration;
17 17

  
18
/** 
19
 * A Class that represents an XML element and its contents and
20
 * can write its own representation to a database connection
21
 */
18 22
public class DBSAXElement extends BasicElement {
19 23

  
20 24
    private Connection		conn;
21 25

  
26
    /** 
27
     * Construct a new element instance
28
     *
29
     * @param conn the JDBC Connection to which all information is written
30
     * @param tagname the name of the element
31
     * @param parent_id the parent id number for this element
32
     */
22 33
    public DBSAXElement (Connection conn, String tagname, 
23 34
                         long parent_id) {
24 35

  

Also available in: Unified diff