Public Functions
 FunctionDefined by
  
In(... args):void
Syntax helper to clarify component property evaluations.

Example:
   import org.granite.tide.seam.In;
   
   ...
org.granite.tide.seam
Function detail
In()function
public function In(... args):void

Syntax helper to clarify component property evaluations.

Example:

   import org.granite.tide.seam.In;
   
   ...
  
   In(myComponent.myProperty)
   myComponent.myMethod(param);
   

This actually stricly equivalent to:
   myComponent.myProperty;
   myComponent.myMethod(param);
   

Parameters
... args — dummy arguments used to evalutate properties