Examples of popObject()


Examples of com.volantis.xml.pipeline.sax.XMLPipelineContext.popObject()

        // Remove the process.
        dynamicProcess.removeProcess(process);

        if (!context.inErrorRecoveryMode()) {
            Object popped = context.popObject();
            if (popped != model) {
                XMLPipelineException error = new XMLPipelineException(
                        "Expected to remove object " + model +
                        "from the pipeline, but actually removed " + popped,
                        context.getCurrentLocator());
View Full Code Here

Examples of com.volantis.xml.pipeline.sax.XMLPipelineContext.popObject()

        XMLPipelineContext context = dynamicProcess.getPipelineContext();
        if (!context.inErrorRecoveryMode()) {
            model.endTry();

            context.popObject(model);
        }

        dynamicProcess.removeProcess(process);

        if (!context.inErrorRecoveryMode()) {
View Full Code Here

Examples of com.volantis.xml.pipeline.sax.XMLPipelineContext.popObject()

                            throws SAXException {

                        XMLPipelineContext context = dynamicProcess.
                                getPipelineContext();

                        Object properties = context.popObject();
                        if (!(properties instanceof CacheProperties)) {
                            forwardFatalError(dynamicProcess,
                                    "Expected properties to be instance of " +
                                            "CacheProperties, but was " +
                                            properties.getClass());
View Full Code Here

Examples of org.jibx.runtime.IUnmarshallingContext.popObject()

        uctx.setDocument(is, fname, null);
        uctx.pushObject(new UnmarshalWrapper(vctx, contain));
        BindingElement binding = new BindingElement();
        binding.setPrecompiled(precomp);
        ((IUnmarshallable)binding).unmarshal(uctx);
        uctx.popObject();
        return binding;
    }

    /**
     * Read a binding definition to construct binding model. This method cannot
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.