Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that represents an XML PI node and its contents,
4
 *             and can build itself from a database connection
5
 *  Copyright: 2000 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 *    Authors: Matt Jones
8
 *    Release: @release@
9
 *
10
 *   '$Author: jones $'
11
 *     '$Date: 2001-01-18 11:52:00 -0800 (Thu, 18 Jan 2001) $'
12
 * '$Revision: 669 $'
13
 *
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 */
28

    
29
package edu.ucsb.nceas.metacat;
30

    
31
/**
32
 * A Class that represents an XML PI node and its contents,
33
 */
34
public class PINode extends BasicNode {
35

    
36
    private String      nodeData = null;
37

    
38
    /** 
39
     * Construct a new PINode instance
40
     *
41
     * @param nodeid the id for the node to be created
42
     * @param parentnodeid the id of the parent node
43
     * @param nodename the name of the PI node
44
     * @param nodedata the contents of the PI node
45
     */
46
    public PINode (long nodeid, long parentnodeid, String nodename,
47
                          String nodedata) {
48
      setNodeID(nodeid);
49
      setParentID(parentnodeid);
50
      setTagName(nodename);
51
      setNodeData(nodedata);
52
      setNodeType("PI");
53
    }
54

    
55
    /** Set the node data to the given string */
56
    public void setNodeData(String nodedata) {
57
      this.nodeData = nodedata;
58
    }
59

    
60
    /** Get the node data as a string value */
61
    public String getNodeData() {
62
      return nodeData;
63
    }
64

    
65
    /** 
66
     * String representation of this text node
67
     */
68
    public String toString () {
69
        return ("<?" + getTagName() + " " + nodeData + " ?>");
70
    }
71
}
72

    
73
/**
74
 * '$Log$
75
 * 'Revision 1.2  2000/08/14 20:53:34  jones
76
 * 'Added "release" keyword to all metacat source files so that the release
77
 * 'number will be evident in software distributions.
78
 * '
79
 * 'Revision 1.1  2000/06/28 02:36:26  jones
80
 * 'Added feature to now ouput COMMENTs and PIs when the document is
81
 * 'read from the database with DBReader.
82
 * '
83
 */
(48-48/63)