| Function | Defined by | ||
|---|---|---|---|
|
In(... args):void
Syntax helper to clarify component property evaluations.
Example: import org.granite.tide.seam.In; ... | org.granite.tide.seam | ||
| 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);
myComponent.myProperty; myComponent.myMethod(param);Parameters
... args — dummy arguments used to evalutate properties
|