Project

General

Profile

« Previous | Next » 

Revision 826

Added by bojilova over 22 years ago

changes to store namespace prefixes separately from the local names of nodes (elements and attributes)
in xml_nodes.nodeprefix column

View differences:

NodeRecord.java
35 35
  public long parentnodeid;
36 36
  public long nodeindex;
37 37
  public String nodename = null;
38
  public String nodeprefix = null;
38 39
  public String nodetype = null;
39 40
  public String nodedata = null;
40 41

  
......
42 43
   * Constructor
43 44
   */
44 45
  public NodeRecord(long nodeid, long parentnodeid, long nodeindex,
45
                    String nodetype, String nodename, String nodedata) {
46
                    String nodetype, String nodename, String nodeprefix, 
47
                    String nodedata) {
46 48
    this.nodeid = nodeid;
47 49
    this.parentnodeid = parentnodeid;
48 50
    this.nodeindex = nodeindex;
49 51
    this.nodename = nodename;
52
    this.nodeprefix = nodeprefix;
50 53
    this.nodetype = nodetype;
51 54
    this.nodedata = nodedata;
52 55
  }

Also available in: Unified diff