Examples of writeTo()


Examples of xbird.xquery.func.BuiltInFunction.writeTo()

    public void writeExternal(ObjectOutput out) throws IOException {
        super.writeExternal(out);
        if(func instanceof BuiltInFunction) {
            out.writeBoolean(true);
            BuiltInFunction builtIn = (BuiltInFunction) func;
            builtIn.writeTo(out);
        } else {
            out.writeBoolean(false);
            out.writeObject(func);
        }
    }
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.