Added more comments and assertions to all classes; clean up

This commit is contained in:
severin
2014-03-19 16:49:24 +01:00
parent c5363c948c
commit 4e7e1e9c45
25 changed files with 223 additions and 83 deletions

View File

@@ -53,17 +53,22 @@ feature {NONE} -- Initialization
feature -- Implementation
value: STRING_32
-- The current value
do
Result := input.value
end
set_value (v: STRING_32)
-- Set the current date (has to be in format dd-mm-yyyy)
do
input.set_value (v)
ensure then
value_set: input.value = v
end
feature -- Properties
input: WSF_INPUT_CONTROL
-- The input control which is used to display the selected date
end