Package org.rendersnake.js

Examples of org.rendersnake.js.Function


import junit.framework.TestCase;

public class FunctionTest extends TestCase {

    public void testSimple(){       
        Function f = new Function("arg");
        f.add($("this").addClass("hide"));
        System.out.println(f);
    }
View Full Code Here


        f.add($("this").addClass("hide"));
        System.out.println(f);
    }

    public void testSimple2(){       
        Function f = new Function("arg");
        f.name = "test";
        f.add($("this").addClass("hide"));
        f.add(new Statement("alert('hello')"));
        f.returns = "1+2";
       
        System.out.println(f);
    }
View Full Code Here

TOP

Related Classes of org.rendersnake.js.Function

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.