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

  1. ///////////////////////////////////////////////////////////////////
  2. //  FuncInfo.java   -- LED Sign V2.5
  3. //
  4. //  Contains the following classes:
  5. //      FuncInfo   -- a class (struct) to hold all the 
  6. //                    information for any function.
  7. //
  8. //  Revisions:
  9. //     V2.7: See "Revisions" doc for more info
  10. //
  11. //     V2.5: Fixed all known bugs in previous versions!  Added
  12. //           the new feature of ledsize, which allows the user
  13. //           to specify in pixels how big the LED's (1-4).
  14. //           Thanks to Robert B. Denny (rdenny@dc3.com) for
  15. //           code and input!
  16. //           Modified Dec 20-26, 1995
  17. //
  18. //     V2.0beta: Modified V1.0 to comply with Pre-Beta java.
  19. //               A problem with delay causes a jerky display.
  20. //               Modified Oct 20 - 29, 1995
  21. //
  22. //     V1.0: Written July 17 - August 6, 1995
  23. //
  24. //  by Darrick Brown
  25. //     dbrown@cs.hope.edu
  26. //     http://www.cs.hope.edu/~dbrown/
  27. //
  28. //  ⌐ Copyright 1995
  29. ///////////////////////////////////////////////////////////////////
  30.  
  31.  
  32. import java.awt.*;
  33. import java.io.*;
  34. import java.util.*;
  35. import java.net.*;
  36.  
  37. ///////////////////////////////////////////////////////////////////
  38. // The "struct" that contains all the information
  39. // than any function/transition would need.
  40. public class FuncInfo
  41. {
  42.    public int func;
  43.    public int delay;
  44.    public int startspace, endspace;
  45.    public int times, remaining;
  46.    public boolean centered;
  47.    public String color;
  48.    public String text;
  49.    public String store;  // store the original text line
  50.    public String target; // Target frame
  51.    public URL url;       // The url associated with this message
  52.    public linkList ret;  // pointer to the return place in the script (for loops);
  53. }
  54.