19928/jj_vision/unfinished/ymdhms_interval_field.e
Jocelyn Fiat 6dde6425c2 init
2024-06-17 09:09:33 +02:00

45 lines
529 B
Plaintext

note
description: "Objects that ..."
author: ""
date: "$Date: 2012-03-16 14:05:07 -0400 (Fri, 16 Mar 2012) $"
revision: "$Revision: 7 $"
class
YMDHMS_INTERVAL_FIELD
inherit
FIELD
redefine
default_create
end
create
default_create
feature -- Initialization
default_create
do
Precursor {FIELD}
end
feature -- Access
data: YMDHMS_INTERVAL
once
create Result.make
end
feature -- Transformation
as_widget: YMDHMS_INTERVAL_CONTROL
do
create Result
-- Result.set_data (data)
end
end