Package org.boris.xlloop

Source Code of org.boris.xlloop.FunctionInformationTest

package org.boris.xlloop;

import org.boris.xlloop.handler.FunctionInformation;

public class FunctionInformationTest
{
    public static void main(String[] args) {
        FunctionInformation fi = new FunctionInformation("Math.pow");
        fi.setFunctionHelp("Raises the first value to the power of the second");
        fi.setCategory("Maths");
        fi.addArgument("value", "The first value");
        fi.addArgument("power", "The power value");
        System.out.println(fi.encode());
    }
}
TOP

Related Classes of org.boris.xlloop.FunctionInformationTest

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.