<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!--NewPage-->
<html>
<head>
<!-- Generated by javadoc on Thu Dec 02 07:37:32 GMT+03:30 1999 -->
<title>
  Class mootcan.HistoryNode
</title>
</head>
<body>
<a name="_top_"></a>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-mootcan.html">This Package</a>  <a href="Package-mootcan.html">Previous</a>  <a href="Package-mootcan.html">Next</a>  <a href="AllNames.html">Index</a></pre>
<hr>
<h1>
  Class mootcan.HistoryNode
</h1>
<pre>
java.lang.Object
   |
   +----mootcan.HistoryNode
</pre>
<hr>
<dl>
  <dt> public class <b>HistoryNode</b>
  <dt> extends Object
</dl>
a doubly linked node for history lists
<p>
<hr>
<a name="index"></a>
<h2>
  <img src="images/variable-index.gif" width=207 height=38 alt="Variable Index">
</h2>
<dl>
  <dt> <img src="images/magenta-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#element"><b>element</b></a>
  <dd> 
  <dt> <img src="images/magenta-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#next"><b>next</b></a>
  <dd> 
  <dt> <img src="images/magenta-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#prev"><b>prev</b></a>
  <dd> 
</dl>
<h2>
  <img src="images/constructor-index.gif" width=275 height=38 alt="Constructor Index">
</h2>
<dl>
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#HistoryNode()"><b>HistoryNode</b></a>()
  <dd> 
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#HistoryNode(java.lang.Object, mootcan.HistoryNode, mootcan.HistoryNode)"><b>HistoryNode</b></a>(Object, HistoryNode, HistoryNode)
  <dd> 
</dl>
<h2>
  <img src="images/method-index.gif" width=207 height=38 alt="Method Index">
</h2>
<dl>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getElem()"><b>getElem</b></a>()
  <dd> 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getNext()"><b>getNext</b></a>()
  <dd> 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getPrev()"><b>getPrev</b></a>()
  <dd> 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#setElement(java.lang.Object)"><b>setElement</b></a>(Object)
  <dd> 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#setNext(mootcan.HistoryNode)"><b>setNext</b></a>(HistoryNode)
  <dd> 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#setPrev(mootcan.HistoryNode)"><b>setPrev</b></a>(HistoryNode)
  <dd> 
</dl>
<a name="variables"></a>
<h2>
  <img src="images/variables.gif" width=153 height=38 alt="Variables">
</h2>
<a name="element"><img src="images/magenta-ball.gif" width=12 height=12 alt=" o "></a>
<b>element</b>
<pre>
 private Object element
</pre>
<a name="next"><img src="images/magenta-ball.gif" width=12 height=12 alt=" o "></a>
<b>next</b>
<pre>
 private <a href="#_top_">HistoryNode</a> next
</pre>
<a name="prev"><img src="images/magenta-ball.gif" width=12 height=12 alt=" o "></a>
<b>prev</b>
<pre>
 private <a href="#_top_">HistoryNode</a> prev
</pre>
<a name="constructors"></a>
<h2>
  <img src="images/constructors.gif" width=231 height=38 alt="Constructors">
</h2>
<a name="HistoryNode"></a>
<a name="HistoryNode()"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>HistoryNode</b>
<pre>
 HistoryNode()
</pre>
<a name="HistoryNode(java.lang.Object, mootcan.HistoryNode, mootcan.HistoryNode)"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>HistoryNode</b>
<pre>
 HistoryNode(Object element,
             <a href="#_top_">HistoryNode</a> prev,
             <a href="#_top_">HistoryNode</a> next)
</pre>
<a name="methods"></a>
<h2>
  <img src="images/methods.gif" width=151 height=38 alt="Methods">
</h2>
<a name="setElement(java.lang.Object)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="setElement"><b>setElement</b></a>
<pre>
 public void setElement(Object newElem)
</pre>
<a name="setNext(mootcan.HistoryNode)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="setNext"><b>setNext</b></a>
<pre>
 public void setNext(<a href="#_top_">HistoryNode</a> newNext)
</pre>
<a name="setPrev(mootcan.HistoryNode)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="setPrev"><b>setPrev</b></a>
<pre>
 public void setPrev(<a href="#_top_">HistoryNode</a> newPrev)
</pre>
<a name="getElem()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getElem"><b>getElem</b></a>
<pre>
 public Object getElem()
</pre>
<a name="getNext()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getNext"><b>getNext</b></a>
<pre>
 public <a href="#_top_">HistoryNode</a> getNext()
</pre>
<a name="getPrev()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getPrev"><b>getPrev</b></a>
<pre>
 public <a href="#_top_">HistoryNode</a> getPrev()
</pre>
<hr>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-mootcan.html">This Package</a>  <a href="Package-mootcan.html">Previous</a>  <a href="Package-mootcan.html">Next</a>  <a href="AllNames.html">Index</a></pre>
</body>
</html>