OSDN Git Service

初回インポート
[jovsonz/Jovsonz.git] / src / main / java / jp / sourceforge / jovsonz / package-info.java
1 /*
2  * Jovsonz library package comment
3  *
4  * This source-file is something special for SunJDK5.0 Javadoc or later.
5  *
6  * License : The MIT License
7  * Copyright(c) 2009 olyutorskii
8  */
9
10 /**
11  * Jovsonz is a Java-library for JSON read/write purpose.
12  * Jovsonz library was derived from Jindolf project.
13  *
14  * <hr>
15  *
16  * <p>
17  * The MIT License
18  * </p>
19  * <p>
20  * Copyright(c) 2009 olyutorskii
21  * </p>
22  * <p>
23  * Permission is hereby granted, free of charge, to any person obtaining a
24  * copy of this software and associated documentation files (the "Software"),
25  * to deal in the Software without restriction, including without limitation
26  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
27  * and/or sell copies of the Software, and to permit persons to whom the
28  * Software is furnished to do so, subject to the following conditions:
29  * </p>
30  * <p>
31  * The above copyright notice and this permission notice shall be included in
32  * all copies or substantial portions of the Software.
33  * </p>
34  * <p>
35  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
37  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
38  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
39  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
40  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41  * OTHER DEALINGS IN THE SOFTWARE.
42  * </p>
43  *
44  * <hr>
45  *
46  * <h1>JSON基本型</h1>
47  * <dl>
48  * <dt>OBJECT型</dt>
49  * <dd>{  "Name" : "Joe",  "Age" : 88  }</dd>
50  * <dt>ARRAY型</dt>
51  * <dd>[ true, "ABC", 23 ]</dd>
52  * <dt>STRING型</dt>
53  * <dd>"ABC"</dd>
54  * <dt>NUMBER型</dt>
55  * <dd>-12.34</dd>
56  * <dt>BOOLEAN型</dt>
57  * <dd>true</dd>
58  * <dt>NULL型</dt>
59  * <dd>null</dd>
60  * </dl>
61  *
62  * @see <a href="http://json.org/">Introducing JSON</a>
63  * @see <a href="http://json.org/json-ja.html">JSONの紹介</a>
64  * @see <a href="http://www.ietf.org/rfc/rfc4627.txt">RFC4627</a>
65  * @see <a href=
66  * "http://ja.wikipedia.org/wiki/JavaScript_Object_Notation">
67  * Wikipedia(ja)解説</a>
68  * @see <a href=
69  * "http://en.wikipedia.org/wiki/JavaScript_Object_Notation">
70  * Wikipedia(en)</a>
71  */
72
73 package jp.sourceforge.jovsonz;
74
75 /* EOF */