General method chaining. Adds .methodName([methodArgs]) to this statement.
@param methodName is the name of the chained method
@param methodArgs is the array of (optional) method arguments
@return this statement
Constructs a chained call.
@param _method is the method to be called; must be callable on objects of the class returnedby the current call.
@param _args is the list of arguments for the method's parameters.
@return A new frame that links back to this one.
Chains a function call to this {@link JsStatement}. The function call is wrapped in a ChainableStatement. (eases JavaScript integration).
@return {@link JsStatement} this instance.
@see #chain(CharSequence,CharSequence)
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.