note
description: "Use this squeleton to modify the generated class tables%
%Set the anchor to True and the code between the tags will%
%be inserted in the class tables%
%You should write the tags with no space."
author: ""
date: "$Date$"
revision: "$Revision$"
class
MY_TABLE
inherit
ANY
redefine
out
end
MY_INHERITANCE
redefine
my_feature
end
create
make
feature -- Access
myid: STRING
-- Auto-generated.
feature -- Initialization
make
do
myid:= ""
end
feature -- Settings
set_myid (a_myid: ANY)
--Set the value of myid
require
value_exists: a_myid /= Void
do
myid := a_myid
ensure
myid_set: a_myid = myid
end
feature -- Output
out: STRING
do
Result := ""
Result.append (myid.out + "%N")
end
feature -- my_feature
my_action
do
action
end
end