Package com.volantis.xml.pipeline

Examples of com.volantis.xml.pipeline.Namespace


                // return the empty sequence
                return Sequence.EMPTY;
            }
        };

        Namespace integrationNamespace = Namespace.literal("integration");

        // register this function with the expression context
        context.registerFunction(
                new ImmutableExpandedName(
                        integrationNamespace.getURI(),
                        "emptySequence"),
                emptySequenceFn);

        // ensure the prefix tracker is aware of this namespace
        NamespacePrefixTracker tracker = context.getNamespacePrefixTracker();
        tracker.startPrefixMapping(integrationNamespace.toString(),
                                   integrationNamespace.getURI());
    }
View Full Code Here

TOP

Related Classes of com.volantis.xml.pipeline.Namespace

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.