Class DBSAXElement
java.lang.Object
|
+--BasicElement
|
+--DBSAXElement
- public class DBSAXElement
- extends BasicElement
A Class that represents an XML element and its contents and
can write its own representation to a database connection
Constructor Summary |
DBSAXElement(java.sql.Connection conn,
java.lang.String tagname,
long parent_id)
Construct a new element instance |
Method Summary |
void |
setAttribute(java.lang.String attName,
java.lang.String attValue)
Add a new attribute to this element, or set its value |
void |
writeContentToDB()
Write the element content to the db connection |
Methods inherited from class BasicElement |
appendContent,
appendContent,
getAttribute,
getAttributes,
getContent,
getElementID,
getParentID,
getTagName,
setElementID,
setParentID,
setTagName,
toString |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
DBSAXElement
public DBSAXElement(java.sql.Connection conn,
java.lang.String tagname,
long parent_id)
- Construct a new element instance
- Parameters:
conn
- the JDBC Connection to which all information is writtentagname
- the name of the elementparent_id
- the parent id number for this element
setAttribute
public void setAttribute(java.lang.String attName,
java.lang.String attValue)
- Add a new attribute to this element, or set its value
- Overrides:
- setAttribute in class BasicElement
writeContentToDB
public void writeContentToDB()
- Write the element content to the db connection