Files
EWF/library/server/wsf_html/webcontrol/wsf_password_control.e
2013-09-06 18:06:43 +02:00

26 lines
316 B
Plaintext

note
description: "Summary description for {WSF_PASSWORD_CONTROL}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WSF_PASSWORD_CONTROL
inherit
WSF_INPUT_CONTROL
create
make_password
feature {NONE}
make_password (n: STRING; v: STRING)
do
make_input (n, v)
type := "password"
end
end