Add comments to grid controls
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user