Class DoubleListNode


  • public class DoubleListNode
    extends java.lang.Object
    A doubly-linked list node storing a SolitaireCard.
    Author:
    Stina Bridgeman
    • 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 element
        prev - the prev node
        next - 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