Add accept method (JSON_VISITOR), remove is_xxx queries, remove to_json feature.

Improve comments
This commit is contained in:
jvelilla
2008-08-25 01:13:35 +00:00
parent f83c5d2643
commit 31750efb8e
7 changed files with 110 additions and 213 deletions

View File

@@ -1,8 +1,8 @@
indexing
description: "JSON Null Values"
author: "Javier Velilla"
date: "$Date$"
revision: "$Revision$"
date: "2008/08/24"
revision: "Revision 0.1"
class
JSON_NULL
@@ -10,17 +10,20 @@ class
JSON_VALUE
feature --Access
to_json:STRING is
--
do
Result:=null_value
end
hash_code:INTEGER is
--
do
Result:= null_value.hash_code
end
-- Hash code value
do
Result:= null_value.hash_code
end
feature -- Visitor pattern
accept (a_visitor: JSON_VISITOR) is
-- Accept `a_visitor'.
-- (Call `visit_element_a' procedure on `a_visitor'.)
do
a_visitor.visit_json_null (Current)
end
feature {NONE}-- Implementation
null_value:STRING is "null"