Package org.dbwiki.data.database

Examples of org.dbwiki.data.database.DatabaseTextNode.identifier()


 
  private void writeTextNodes(RDBMSDatabaseAttributeNode attribute, int entry) throws java.sql.SQLException, org.dbwiki.exception.WikiException {   
    for (int iValue = 0; iValue < attribute.value().size(); iValue++) {
      DatabaseTextNode node = attribute.value().get(iValue);
      if (((NodeIdentifier)node.identifier()).nodeID() == RelDataColIDValUnknown) {
        TimeSequence timestamp = null;
        if (node.hasTimestamp()) {
          timestamp = node.getTimestamp();
        }
        this.insertTextNode(attribute, entry, timestamp, node.value(), attribute.getpre(), attribute.getpost());
View Full Code Here


    for (int iChild = 0; iChild < group.children().size(); iChild++) {
      DatabaseElementNode child = group.children().get(iChild);
      if (child.isAttribute()) {
        DatabaseTextNode value = ((DatabaseAttributeNode)child).value().getCurrent();
        if (value != null) {
          valueIndex.put(value.identifier().toParameterString(), value);
        }
      } else {
        getValueIndex((DatabaseGroupNode)child, valueIndex);
      }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.