Hi Eli,
ILWidget already has #newRootElement, so what about:
ILWidget>>newRootElement [
^self rootElementclass new
]
ILWidget>>rootElementClass [
^ILDivElement
]
ILWidget>>buildContents [
self buildHead: self application page head.
^self newRootElement
class: self id;
build: decorator contents;
yourself
]
Cheers!
Nico