Package xbird.xquery.dm.value

Examples of xbird.xquery.dm.value.Sequence.atomize()


    }

    private String processContentExpr(Sequence contextSeq, DynamicContext dynEnv)
            throws XQueryException {
        final Sequence src = _contentExpr.eval(contextSeq, dynEnv);
        final Sequence<? extends Item> textSeq = src.atomize(dynEnv);
        final IFocus<? extends Item> itor = textSeq.iterator();
        if(!itor.hasNext()) {
            itor.closeQuietly();
            return "";
        }
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.