Class DoubleListNode
- java.lang.Object
-
- DoubleListNode
-
public class DoubleListNode extends java.lang.Object
A doubly-linked list node storing a SolitaireCard.- Author:
- Stina Bridgeman
-
-
Constructor Summary
Constructors Constructor Description DoubleListNode(SolitaireCard card)
Create a new node storing the specified card.DoubleListNode(SolitaireCard card, DoubleListNode prev, DoubleListNode next)
Create a new node storing the specified card.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SolitaireCard
getCard()
Get the element.DoubleListNode
getNext()
Get the next node.DoubleListNode
getPrev()
Get the previous node.void
setNext(DoubleListNode next)
Set the next node.void
setPrev(DoubleListNode prev)
Set the previous node.
-
-
-
Constructor Detail
-
DoubleListNode
public DoubleListNode(SolitaireCard card)
Create a new node storing the specified card. Next and previous pointers are null.- Parameters:
card
- the element
-
DoubleListNode
public DoubleListNode(SolitaireCard card, DoubleListNode prev, DoubleListNode next)
Create a new node storing the specified card. Next and previous pointers are as specified.- Parameters:
card
- the elementprev
- the prev nodenext
- the next node
-
-
Method Detail
-
getNext
public DoubleListNode getNext()
Get the next node.- Returns:
- the next node
-
setNext
public void setNext(DoubleListNode next)
Set the next node.- Parameters:
next
- the next node
-
getPrev
public DoubleListNode getPrev()
Get the previous node.- Returns:
- the previous node
-
setPrev
public void setPrev(DoubleListNode prev)
Set the previous node.- Parameters:
prev
- the previous node
-
getCard
public SolitaireCard getCard()
Get the element.- Returns:
- this node's card
-
-