Examples of openFrame()


Examples of com.xmlcalabash.core.XProcData.openFrame()

        if (runtime.getAllowGeneralExpressions()) {
            logger.trace(MessageFormatter.nodeMessage(step.getNode(), "Running with the 'general-values' extension enabled."));
        }

        XProcData data = runtime.getXProcData();
        data.openFrame(this);

        runtime.start(this);
        try {
            doRun();
        } catch (XProcException ex) {
View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

   
    public void run() throws SaxonApiException {
        logger.trace("Running p:for-each " + step.getName());

        XProcData data = runtime.getXProcData();
        data.openFrame(this);

        if (current == null) {
            current = new Pipe(runtime);
        }
View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

    public void run() throws SaxonApiException {
        logger.trace("Running cx:until-unchanged " + step.getName());

        XProcData data = runtime.getXProcData();
        data.openFrame(this);

        if (current == null) {
            current = new Pipe(runtime);
        }
View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

            }
        }
       
        // Make sure we do this *after* calculating any option/parameter values...
        XProcData data = runtime.getXProcData();
        data.openFrame(this);

        runtime.start(this);
        try {
            xstep.run();

View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

        }
    }

    public void run() throws SaxonApiException {
        XProcData data = runtime.getXProcData();
        data.openFrame(this);
       
        copyInputs();

        // N.B. At this time, there are no compound steps that accept parameters or options,
        // so the order in which we calculate them doesn't matter. That will change if/when
View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

    public void run() throws SaxonApiException {
        logger.trace("Running p:viewport " + step.getName());

        XProcData data = runtime.getXProcData();
        data.openFrame(this);

        if (current == null) {
            current = new Pipe(runtime);
        }
View Full Code Here

Examples of com.xmlcalabash.core.XProcData.openFrame()

       
        // Don't reset iteration-position and iteration-size
        XProcData data = runtime.getXProcData();
        int ipos = data.getIterationPosition();
        int isize = data.getIterationSize();
        data.openFrame(this);
        data.setIterationPosition(ipos);
        data.setIterationSize(isize);

        inScopeOptions = parent.getInScopeOptions();
        for (Variable var : step.getVariables()) {
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.