Move wsf_js_widget library under draft/library/server/wsf_js_widget

This commit is contained in:
2014-07-07 10:26:10 +02:00
parent 3c8dc0a9e1
commit fe4c283336
106 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,44 @@
note
description: "Summary description for {INCREASING_PROGRESSSOURCE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
INCREASING_PROGRESSSOURCE
inherit
WSF_PROGRESS_SOURCE
create
make
feature {NONE} -- Initialization
control: detachable WSF_PROGRESS_CONTROL
make ()
do
end
feature -- Implementation
set_control (c: WSF_PROGRESS_CONTROL)
do
control := c
end
progress: INTEGER
do
if attached control as c then
Result := c.progress
if c.progress < 100 then
Result := Result + 1
end
else
Result := 0
end
end
end