Wiki source code of WOParam
Version 3.1 by Pascal Robert on 2011/05/08 01:55
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{toc}}{{/toc}} | ||
2 | |||
3 | = Introduction = | ||
4 | |||
5 | WOParam elements are used for passing WOApplet parameters. | ||
6 | |||
7 | = Usage = | ||
8 | |||
9 | {{code}} | ||
10 | |||
11 | WOParam { | ||
12 | name=aString; | ||
13 | value=aString; | action=aMethod; ... | ||
14 | } | ||
15 | |||
16 | {{/code}} | ||
17 | |||
18 | = Bindings = | ||
19 | |||
20 | | name | Symbolic name associated with this element's value. | ||
21 | | value | Value of this parameter. | ||
22 | | action | Method that sets the parameter's value. Use this attribute instead of value if you want the parameter to be a WebObjects component. | ||
23 | |||
24 | = Examples = | ||
25 | |||
26 | == Java methods == | ||
27 | |||
28 | == WOD-style == | ||
29 | |||
30 | {{code}} | ||
31 | |||
32 | |||
33 | {{/code}} | ||
34 | |||
35 | == Inline bindings (WOOGNL) == | ||
36 | |||
37 | {{code}} | ||
38 | |||
39 | |||
40 | {{/code}} | ||
41 | |||
42 | = Related documents = |