Changed structure

This commit is contained in:
Severin Münger
2013-09-12 11:38:31 +02:00
parent 55e91bff7f
commit 8fc405fef1
8 changed files with 5 additions and 6 deletions

View File

@@ -0,0 +1,35 @@
note
description: "Summary description for {WSF_TEXT_CONTROL}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WSF_TEXTAREA_CONTROL
inherit
WSF_INPUT_CONTROL
redefine
render
end
create
make_textarea
feature {NONE}
make_textarea (n, t: STRING)
do
make_input (n, t)
tag_name := "textarea"
end
feature
render: STRING
do
Result := render_tag (text, "")
end
end