GNU
|
Liberty Eiffel
|
Automated Tests
|
Wiki
|
Savannah project
|
Debian packages
|
Documentation
>
libraries
>
JSON_VISITOR
+
Point of view
All features
ANY
JSON_ARRAY
JSON_FALSE
JSON_NULL
JSON_NUMBER
JSON_OBJECT
JSON_STRING
JSON_TRUE
All features
deferred class JSON_VISITOR
Summary
top
Direct parents
Inherit list:
VISITOR
Insert list:
JSON_HANDLER
Known children
Inherit list:
JSON_DECODER
,
JSON_ENCODER
,
JSON_REPOSITORY_IMPL
Overview
top
Features
{
JSON_ARRAY
}
visit_array
(json:
JSON_ARRAY
)
{
JSON_FALSE
}
visit_false
(json:
JSON_FALSE
)
{
JSON_NULL
}
visit_null
(json:
JSON_NULL
)
{
JSON_NUMBER
}
visit_number
(json:
JSON_NUMBER
)
{
JSON_OBJECT
}
visit_object
(json:
JSON_OBJECT
)
{
JSON_STRING
}
visit_string
(json:
JSON_STRING
)
{
JSON_TRUE
}
visit_true
(json:
JSON_TRUE
)
visit_array
(json:
JSON_ARRAY
)
deferred procedure
{
JSON_ARRAY
}
top
require
json /= Void
visit_false
(json:
JSON_FALSE
)
deferred procedure
{
JSON_FALSE
}
top
require
json /= Void
visit_null
(json:
JSON_NULL
)
deferred procedure
{
JSON_NULL
}
top
require
json /= Void
visit_number
(json:
JSON_NUMBER
)
deferred procedure
{
JSON_NUMBER
}
top
require
json /= Void
visit_object
(json:
JSON_OBJECT
)
deferred procedure
{
JSON_OBJECT
}
top
require
json /= Void
visit_string
(json:
JSON_STRING
)
deferred procedure
{
JSON_STRING
}
top
require
json /= Void
visit_true
(json:
JSON_TRUE
)
deferred procedure
{
JSON_TRUE
}
top
require
json /= Void