Package org.jaxen

Examples of org.jaxen.FunctionContext


    }
    public void testSerializeFunctionContext() throws JaxenException, IOException {
       
        DOMXPath xpath = new DOMXPath("/root/child");
        FunctionContext context = xpath.getFunctionContext();
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream oout = new ObjectOutputStream(out);
        try {
            oout.writeObject(context);
            fail("serialized function context");
View Full Code Here

TOP

Related Classes of org.jaxen.FunctionContext

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.