KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > reasoner > rulesys > impl > FrameObject


1 /******************************************************************
2  * File: FrameObject.java
3  * Created by: Dave Reynolds
4  * Created on: 18-Jul-2003
5  *
6  * (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
7  * [See end of file]
8  * $Id: FrameObject.java,v 1.4 2005/02/21 12:17:40 andy_seaborne Exp $
9  *****************************************************************/

10 package com.hp.hpl.jena.reasoner.rulesys.impl;
11
12 /**
13  * Base class for stack frame objects. Originally this was used to provide
14  * pool-based allocated but it turns out the normal Java GC outperforms
15  * manual pool-based allocation anyway.
16  *
17  * @author <a HREF="mailto:der@hplb.hpl.hp.com">Dave Reynolds</a>
18  * @version $Revision: 1.4 $ on $Date: 2005/02/21 12:17:40 $
19  */

20 public class FrameObject {
21
22     /** Used to link the frame to the prior frame in the (tree) stack or the pool */
23     FrameObject link;
24         
25     /**
26      * Link this frame to an existing frame. In the future this might do some ref count
27      * tricks.
28      */

29     public void linkTo(FrameObject prior) {
30         link = prior;
31     }
32     
33     /**
34      * Link this frame to an existing frame. This will never do any funny ref count tricks.
35      */

36     public void fastLinkTo(FrameObject prior) {
37         link = prior;
38     }
39     
40     /**
41      * Return the prior frame in the tree.
42      */

43     public FrameObject getLink() {
44         return link;
45     }
46     
47     /**
48      * Close the frame actively. This frees any internal resources, frees this frame and
49      * frees the frame to which this is linked.
50      */

51     public void close() {
52     }
53     
54 }
55
56
57 /*
58     (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
59     All rights reserved.
60
61     Redistribution and use in source and binary forms, with or without
62     modification, are permitted provided that the following conditions
63     are met:
64
65     1. Redistributions of source code must retain the above copyright
66        notice, this list of conditions and the following disclaimer.
67
68     2. Redistributions in binary form must reproduce the above copyright
69        notice, this list of conditions and the following disclaimer in the
70        documentation and/or other materials provided with the distribution.
71
72     3. The name of the author may not be used to endorse or promote products
73        derived from this software without specific prior written permission.
74
75     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
76     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
77     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
78     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
79     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
80     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
84     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85 */
Popular Tags