Package xbird.xquery.dm.instance

Examples of xbird.xquery.dm.instance.DataModel


    }

    @Override
    public void evNode(XQNode node) throws XQueryException {
        try {
            final DataModel dm = node.getDataModel();
            if(doRemotePaging && dm.isMemoryMappedStore()) {
                output.writeByte(EV_DTM_NODE);
                DTMNodeBase dtmNode = (DTMNodeBase) node;
                dtmNode.writeTo(output, _serContext);
            } else {
                output.writeByte(EV_NODE_START);
                dm.export(node, this);
                output.writeByte(EV_NODE_END);
            }
        } catch (IOException e) {
            throw new DynamicError("failed on evNode", e);
        }
View Full Code Here


        }
        evText(atom.stringValue());
    }

    public void evNode(final XQNode node) throws XQueryException {
        final DataModel dm = node.getDataModel();
        dm.export(node, this);
    }
View Full Code Here

        }
        evText(atom.stringValue());
    }

    public void evNode(final XQNode node) throws XQueryException {
        final DataModel dm = node.getDataModel();
        dm.export(node, this);
    }
View Full Code Here

TOP

Related Classes of xbird.xquery.dm.instance.DataModel

Copyright © 2018 www.massapicom. 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.