Package com.spoledge.audao.parser.gql.impl.soft

Examples of com.spoledge.audao.parser.gql.impl.soft.SoftFunction


    // Tests - SoftFunctionFactory
    ////////////////////////////////////////////////////////////////////////////

    @Test
    public void testExtFuncMINE() {
        SoftFunctionFactory.getDefaultFactory().defineSoftFunction( "MINE", new SoftFunction() {
            public Object getFunctionValue( List<Object> args ) {
                double x =  argDouble( args.get(0));
                double y =  argDouble( args.get(1));
                return Math.sqrt( x*x + y*y );
            }
View Full Code Here

TOP

Related Classes of com.spoledge.audao.parser.gql.impl.soft.SoftFunction

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.