// ShortNode.java

class ShortNode
{
   short data;
   ShortNode next;

   ShortNode(short data, ShortNode next)
   {
      this.data = data;
      this.next = next;
   }  // constructor
}  // class ShortNode