Package org.boris.jxll

Examples of org.boris.jxll.FunctionInformation


    public static void main(String[] args) throws Exception {
        // Load the addin
        Addin a = JXLL.load(ADDIN);

        // Register the double arg function
        a.registerFunction(new FunctionInformation("DoubleArg", "BB"));

        // Call the double arg function
        XLOper res = a.invoke("DoubleArg", new Double(2.));

        // Display the result
View Full Code Here

TOP

Related Classes of org.boris.jxll.FunctionInformation

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.