New Control structure

This commit is contained in:
Severin Münger
2013-09-13 00:28:37 +02:00
parent b3e383ea82
commit b1cf630443
13 changed files with 255 additions and 67 deletions

View File

@@ -17,15 +17,18 @@ inherit
end
create
make_multi_control
make_multi_control, make_with_tag_name
feature {NONE}
controls: LINKED_LIST [G]
feature {NONE} -- Initialization
make_multi_control (n: STRING)
do
make (n, "div")
make_with_tag_name(n, "div")
end
make_with_tag_name (n, t: STRING)
do
make_control (n, t)
controls := create {LINKED_LIST [G]}.make;
end
@@ -112,4 +115,6 @@ feature
controls.put_front (c)
end
controls: LINKED_LIST [G]
end