All Packages Class Hierarchy This Package Previous Next Index
Class simula.simset.Linkage
java.lang.Object
|
+----simula.simset.Linkage
- public abstract class Linkage
- extends Object
The Linkage
class is the abstract parent of any element of a
double-linked list. It doesn't implement any content.
- See Also:
- Head, Link
-
pred
- Predecessor in the list.
-
suc
- Successor in the list.
-
Linkage()
- Initialize this element with neither previous nor next element.
-
pred()
- Returns the predecessor in the list.
-
pred(Linkage)
- Sets the predecessor.
-
suc()
- Returns the successor in the list.
-
suc(Linkage)
- Sets the successor.
pred
protected Linkage pred
- Predecessor in the list.
suc
protected Linkage suc
- Successor in the list.
Linkage
public Linkage()
- Initialize this element with neither previous nor next element.
pred
public Linkage pred()
- Returns the predecessor in the list.
Null
if absent.
- Returns:
- the predecessor in the list.
Null
if absent.
pred
protected void pred(Linkage _elem)
- Sets the predecessor.
- Parameters:
- _elem - new predecessor to be set.
suc
public Linkage suc()
- Returns the successor in the list.
Null
if absent.
- Returns:
- the successor in the list.
Null
if absent.
suc
protected void suc(Linkage _elem)
- Sets the successor.
- Parameters:
- _elem - new successor to be set.
All Packages Class Hierarchy This Package Previous Next Index