KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > Yasna > forum > util > tree > TreeNodeSerializable


1 package com.Yasna.forum.util.tree;
2
3 /**
4  * Created by IntelliJ IDEA.
5  * User: aaflatooni
6  * Date: Jan 23, 2007
7  * Time: 1:06:24 AM
8  * To chang/**
9  * Copyright (C) 2001 Yasna.com. All rights reserved.
10  *
11  * ===================================================================
12  * The Apache Software License, Version 1.1
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  *
18  * 1. Redistributions of source code must retain the above copyright
19  * notice, this list of conditions and the following disclaimer.
20  *
21  * 2. Redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in
23  * the documentation and/or other materials provided with the
24  * distribution.
25  *
26  * 3. The end-user documentation included with the redistribution,
27  * if any, must include the following acknowledgment:
28  * "This product includes software developed by
29  * Yasna.com (http://www.yasna.com)."
30  * Alternately, this acknowledgment may appear in the software itself,
31  * if and wherever such third-party acknowledgments normally appear.
32  *
33  * 4. The names "Yazd" and "Yasna.com" must not be used to
34  * endorse or promote products derived from this software without
35  * prior written permission. For written permission, please
36  * contact yazd@yasna.com.
37  *
38  * 5. Products derived from this software may not be called "Yazd",
39  * nor may "Yazd" appear in their name, without prior written
40  * permission of Yasna.com.
41  *
42  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
43  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
44  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
45  * DISCLAIMED. IN NO EVENT SHALL YASNA.COM OR
46  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
49  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
50  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
51  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
52  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  * ====================================================================
55  *
56  * This software consists of voluntary contributions made by many
57  * individuals on behalf of Yasna.com. For more information
58  * on Yasna.com, please see <http://www.yasna.com>.
59  */

60
61 /**
62  * Copyright (C) 2000 CoolServlets.com. All rights reserved.
63  *
64  * ===================================================================
65  * The Apache Software License, Version 1.1
66  *
67  * Redistribution and use in source and binary forms, with or without
68  * modification, are permitted provided that the following conditions
69  * are met:
70  *
71  * 1. Redistributions of source code must retain the above copyright
72  * notice, this list of conditions and the following disclaimer.
73  *
74  * 2. Redistributions in binary form must reproduce the above copyright
75  * notice, this list of conditions and the following disclaimer in
76  * the documentation and/or other materials provided with the
77  * distribution.
78  *
79  * 3. The end-user documentation included with the redistribution,
80  * if any, must include the following acknowledgment:
81  * "This product includes software developed by
82  * CoolServlets.com (http://www.coolservlets.com)."
83  * Alternately, this acknowledgment may appear in the software itself,
84  * if and wherever such third-party acknowledgments normally appear.
85  *
86  * 4. The names "Jive" and "CoolServlets.com" must not be used to
87  * endorse or promote products derived from this software without
88  * prior written permission. For written permission, please
89  * contact webmaster@coolservlets.com.
90  *
91  * 5. Products derived from this software may not be called "Jive",
92  * nor may "Jive" appear in their name, without prior written
93  * permission of CoolServlets.com.
94  *
95  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
96  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
97  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
98  * DISCLAIMED. IN NO EVENT SHALL COOLSERVLETS.COM OR
99  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
100  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
101  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
102  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
103  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
104  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
105  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
106  * SUCH DAMAGE.
107  * ====================================================================
108  *
109  * This software consists of voluntary contributions made by many
110  * individuals on behalf of CoolServlets.com. For more information
111  * on CoolServlets.com, please see <http://www.coolservlets.com>.
112  */

113
114 /**
115  * This class is created in order to allow for proper interface of serialization.
116  */

117 public class TreeNodeSerializable extends TreeObject {
118
119     public TreeNodeSerializable() {
120         super(0);
121     }
122 }
123
124
Popular Tags