001: package com.Yasna.forum.util.tree;
002:
003: /**
004: * Created by IntelliJ IDEA.
005: * User: aaflatooni
006: * Date: Jan 23, 2007
007: * Time: 1:06:24 AM
008: * To chang/**
009: * Copyright (C) 2001 Yasna.com. All rights reserved.
010: *
011: * ===================================================================
012: * The Apache Software License, Version 1.1
013: *
014: * Redistribution and use in source and binary forms, with or without
015: * modification, are permitted provided that the following conditions
016: * are met:
017: *
018: * 1. Redistributions of source code must retain the above copyright
019: * notice, this list of conditions and the following disclaimer.
020: *
021: * 2. Redistributions in binary form must reproduce the above copyright
022: * notice, this list of conditions and the following disclaimer in
023: * the documentation and/or other materials provided with the
024: * distribution.
025: *
026: * 3. The end-user documentation included with the redistribution,
027: * if any, must include the following acknowledgment:
028: * "This product includes software developed by
029: * Yasna.com (http://www.yasna.com)."
030: * Alternately, this acknowledgment may appear in the software itself,
031: * if and wherever such third-party acknowledgments normally appear.
032: *
033: * 4. The names "Yazd" and "Yasna.com" must not be used to
034: * endorse or promote products derived from this software without
035: * prior written permission. For written permission, please
036: * contact yazd@yasna.com.
037: *
038: * 5. Products derived from this software may not be called "Yazd",
039: * nor may "Yazd" appear in their name, without prior written
040: * permission of Yasna.com.
041: *
042: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
043: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
044: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
045: * DISCLAIMED. IN NO EVENT SHALL YASNA.COM OR
046: * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
047: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
048: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
049: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
050: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
051: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
052: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
053: * SUCH DAMAGE.
054: * ====================================================================
055: *
056: * This software consists of voluntary contributions made by many
057: * individuals on behalf of Yasna.com. For more information
058: * on Yasna.com, please see <http://www.yasna.com>.
059: */
060:
061: /**
062: * Copyright (C) 2000 CoolServlets.com. All rights reserved.
063: *
064: * ===================================================================
065: * The Apache Software License, Version 1.1
066: *
067: * Redistribution and use in source and binary forms, with or without
068: * modification, are permitted provided that the following conditions
069: * are met:
070: *
071: * 1. Redistributions of source code must retain the above copyright
072: * notice, this list of conditions and the following disclaimer.
073: *
074: * 2. Redistributions in binary form must reproduce the above copyright
075: * notice, this list of conditions and the following disclaimer in
076: * the documentation and/or other materials provided with the
077: * distribution.
078: *
079: * 3. The end-user documentation included with the redistribution,
080: * if any, must include the following acknowledgment:
081: * "This product includes software developed by
082: * CoolServlets.com (http://www.coolservlets.com)."
083: * Alternately, this acknowledgment may appear in the software itself,
084: * if and wherever such third-party acknowledgments normally appear.
085: *
086: * 4. The names "Jive" and "CoolServlets.com" must not be used to
087: * endorse or promote products derived from this software without
088: * prior written permission. For written permission, please
089: * contact webmaster@coolservlets.com.
090: *
091: * 5. Products derived from this software may not be called "Jive",
092: * nor may "Jive" appear in their name, without prior written
093: * permission of CoolServlets.com.
094: *
095: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
096: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
097: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
098: * DISCLAIMED. IN NO EVENT SHALL COOLSERVLETS.COM OR
099: * 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: }
|