| 29 | |
| 30 | |
| 31 | class Foo(Configurable): |
| 32 | i = Integer( |
| 33 | 0, |
| 34 | help=""" |
| 35 | The integer i. |
| 36 | |
| 37 | Details about i. |
| 38 | """, |
| 39 | ).tag(config=True) |
| 40 | j = Integer(1, help="The integer j.").tag(config=True) |
| 41 | name = Unicode("Brian", help="First name.").tag(config=True) |
| 42 | la = List([]).tag(config=True) |
| 43 | li = List(Integer()).tag(config=True) |
| 44 | fdict = Dict().tag(config=True, multiplicity="+") |
| 45 | |
| 46 | |
| 47 | class Bar(Configurable): |