|
| 1 | +-- EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*- |
| 2 | +-- vim: tabstop=2:shiftwidth=2:noexpandtab |
| 3 | +-- kate: tab-width 2; replace-tabs off; indent-width 2; |
| 4 | +-- |
| 5 | +-- ============================================================================= |
| 6 | +-- _ ____ ___ _ _ __ __ ___ _ ____ _ |
| 7 | +-- | / ___| / _ \| \ | | / _| ___ _ __ \ \ / / | | | _ \| | |
| 8 | +-- _ | \___ \| | | | \| |_____| |_ / _ \| '__|___\ \ / /| |_| | | | | | |
| 9 | +-- | |_| |___) | |_| | |\ |_____| _| (_) | | |_____\ V / | _ | |_| | |___ |
| 10 | +-- \___/|____/ \___/|_| \_| |_| \___/|_| \_/ |_| |_|____/|_____| |
| 11 | +-- |
| 12 | +-- ============================================================================= |
| 13 | +-- Authors: 1138-4EB [GitHub User] |
| 14 | +-- |
| 15 | +-- Package: JSON context and public API |
| 16 | +-- |
| 17 | +-- Description: |
| 18 | +-- ------------------------------------ |
| 19 | +-- For detailed documentation see below. |
| 20 | +-- |
| 21 | +-- License: |
| 22 | +-- ============================================================================ |
| 23 | +-- Copyright 2007-2018 Patrick Lehmann - Dresden, Germany |
| 24 | +-- |
| 25 | +-- Licensed under the Apache License, Version 2.0 (the "License"); |
| 26 | +-- you may not use this file except in compliance with the License. |
| 27 | +-- You may obtain a copy of the License at |
| 28 | +-- |
| 29 | +-- http://www.apache.org/licenses/LICENSE-2.0 |
| 30 | +-- |
| 31 | +-- Unless required by applicable law or agreed to in writing, software |
| 32 | +-- distributed under the License is distributed on an "AS IS" BASIS, |
| 33 | +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 34 | +-- See the License for the specific language governing permissions and |
| 35 | +-- limitations under the License. |
| 36 | +-- ============================================================================ |
| 37 | + |
| 38 | +context json_ctx is |
| 39 | + library JSON; |
| 40 | + use JSON.json.T_JSON; |
| 41 | + use JSON.json.jsonLoad; |
| 42 | + use JSON.json.jsonNoParserError; |
| 43 | + use JSON.json.jsonGetErrorMessage; |
| 44 | + use JSON.json.jsonGetContent; |
| 45 | + use JSON.json.jsonGetString; |
| 46 | + use JSON.json.jsonGetBoolean; |
| 47 | + use JSON.json.jsonIsBoolean; |
| 48 | + use JSON.json.jsonIsNull; |
| 49 | + use JSON.json.jsonIsString; |
| 50 | + use JSON.json.jsonIsNumber; |
| 51 | +-- use JSON.json.jsonGetIntArray; |
| 52 | +end context; |
0 commit comments