Change STRING TO STRING_32

This commit is contained in:
YNH Webdev
2014-03-05 14:54:45 +01:00
parent 7ca62463b7
commit 605a094910
41 changed files with 177 additions and 177 deletions

View File

@@ -9,12 +9,12 @@ deferred class
feature -- Access
autocompletion (input: STRING): JSON_ARRAY
autocompletion (input: STRING_32): JSON_ARRAY
-- JSON array of suggestions that fit the specific input
deferred
end
template: detachable STRING
template: detachable STRING_32
-- Customizable template
end

View File

@@ -16,7 +16,7 @@ create
feature {NONE} -- Initialization
make (l: ITERABLE [STRING])
make (l: ITERABLE [STRING_32])
-- Initialize
do
list := l
@@ -24,7 +24,7 @@ feature {NONE} -- Initialization
feature -- Implementation
autocompletion (input: STRING): JSON_ARRAY
autocompletion (input: STRING_32): JSON_ARRAY
-- Implementation
local
o: WSF_JSON_OBJECT
@@ -41,7 +41,7 @@ feature -- Implementation
end
end
list: ITERABLE [STRING]
list: ITERABLE [STRING_32]
-- List containing suggestions
end