home *** CD-ROM | disk | FTP | other *** search
Java Source | 2017-09-21 | 1.1 KB | 41 lines |
- ///////////////////////////////////////////////////////////////////
- // linkList.java -- LED Sign V2.5
- //
- // Contains the following classes:
- // linkList -- a linked list class to store the script
- //
- // Revisions:
- // V2.5: Fixed all known bugs in previous versions! Added
- // the new feature of ledsize, which allows the user
- // to specify in pixels how big the LED's (1-4).
- // Thanks to Robert B. Denny (rdenny@dc3.com) for
- // code and input!
- // Modified Dec 20-26, 1995
- //
- // V2.0beta: Modified V1.0 to comply with Pre-Beta java.
- // A problem with delay causes a jerky display.
- // Modified Oct 20 - 29, 1995
- //
- // V1.0: Written July 17 - August 6, 1995
- //
- // by Darrick Brown
- // dbrown@cs.hope.edu
- // http://www.cs.hope.edu/~dbrown/
- //
- // ⌐ Copyright 1995
- ///////////////////////////////////////////////////////////////////
-
- /*package LED;*/
-
- import java.awt.*;
- import java.io.*;
- import java.util.*;
- import java.net.*;
-
- // A hacked linked list
- public class linkList
- {
- FuncInfo fi;
- linkList next;
- }
-