home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / cracks / cracks2.zip / LEDSIGN.ZIP / LEDSign / LED / linkList.java < prev    next >
Text File  |  1996-03-21  |  1KB  |  41 lines

  1. ///////////////////////////////////////////////////////////////////
  2. //  linkList.java   -- LED Sign V2.5
  3. //
  4. //  Contains the following classes:
  5. //      linkList   -- a linked list class to store the script
  6. //
  7. //  Revisions:
  8. //     V2.7: See "Revisions" doc for more info
  9. //
  10. //     V2.5: Fixed all known bugs in previous versions!  Added
  11. //           the new feature of ledsize, which allows the user
  12. //           to specify in pixels how big the LED's (1-4).
  13. //           Thanks to Robert B. Denny (rdenny@dc3.com) for
  14. //           code and input!
  15. //           Modified Dec 20-26, 1995
  16. //
  17. //     V2.0beta: Modified V1.0 to comply with Pre-Beta java.
  18. //               A problem with delay causes a jerky display.
  19. //               Modified Oct 20 - 29, 1995
  20. //
  21. //     V1.0: Written July 17 - August 6, 1995
  22. //
  23. //  by Darrick Brown
  24. //     dbrown@cs.hope.edu
  25. //     http://www.cs.hope.edu/~dbrown/
  26. //
  27. //  ⌐ Copyright 1995
  28. ///////////////////////////////////////////////////////////////////
  29.  
  30. import java.awt.*;
  31. import java.io.*;
  32. import java.util.*;
  33. import java.net.*;
  34.  
  35. // A hacked linked list
  36. public class linkList
  37. {
  38.    FuncInfo fi;
  39.    linkList next;
  40. }
  41.