skipList / src / Rectangle1.java
Rectangle1.java
Raw
// On my honor:
//
// - I have not used source code obtained from another student,
// or any other unauthorized source, either modified or
// unmodified.
//
// - All source code and documentation used in my program is
// either my original work, or was derived by me from the
// source code published in the textbook for this course.
//
// - I have not discussed coding details about this project with
// anyone other than the instructor, ACM/UPE tutors, programming 
// partner (if allowed in this class), or the TAs assigned to 
// this course. I understand that I may discuss the concepts
// of this program with other students, and that another student
// may help me debug my program so long as neither of us writes
// anything during the discussion or modifies any computer file
// during the discussion. I have violated neither the spirit nor
// letter of this restriction.
// Signed: Nick Grifasi
//
import java.util.*;

/**
 * 
 * @author nickgrifasi
 * @version 9/20/21 Rectangle1 class takes argument for commandFile containing
 *          information to store Rectangles in a SkipList and output 
 *          this process to System.out
 */
public class Rectangle1 {

    /**
     * main() method that runs the CommandFileScanner class
     * @param args parameter used as input for CommandFileScanner. 
     * args[0] should equal a string in format of a text file.
     */
    public static void main(String[] args) {
        if (args.length == 1) {
            CommandFileScanner fileScanner = new CommandFileScanner(args[0]);
            fileScanner.fileScan();
        }

    }

}