Add comments to grid controls

This commit is contained in:
YNH Webdev
2013-09-22 14:35:26 +02:00
parent 57dd4ce259
commit f360e8a867
12 changed files with 85 additions and 72 deletions

View File

@@ -31,7 +31,7 @@ feature {NONE} -- Initialization
-- Initialize with specified control name and tag
do
make_control (n, t)
controls := create {LINKED_LIST [G]}.make;
controls := create {ARRAYED_LIST [G]}.make(5);
end
feature {WSF_PAGE_CONTROL, WSF_CONTROL} -- State management
@@ -129,7 +129,7 @@ feature -- Change
feature -- Properties
controls: LINKED_LIST [G]
controls: ARRAYED_LIST [G]
-- List of current controls in this multi control
end

View File

@@ -20,10 +20,10 @@ feature {NONE} -- Initialization
feature -- Access
request: WSF_REQUEST
-- The request
-- The http request
response: WSF_RESPONSE
-- The response
-- The http response
feature -- Specific implementation

View File

@@ -26,7 +26,7 @@ feature {NONE} -- Initialization
-- Initialize with specified tag
do
make (t)
controls := create {LINKED_LIST [WSF_STATELESS_CONTROL]}.make;
controls := create {ARRAYED_LIST [WSF_STATELESS_CONTROL]}.make (5);
end
feature -- Rendering
@@ -53,7 +53,7 @@ feature -- Change
feature -- Properties
controls: LINKED_LIST [WSF_STATELESS_CONTROL]
controls: ARRAYED_LIST [WSF_STATELESS_CONTROL]
-- List of controls
end