import java.util.*;


/**
 * An example that uses a parameterized collection of a parameterized
 * collection
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class Courses
{
    /**
     * The entry point
     *
     * @param args    The command line arguments (ignored)
     */
    public static void main(String[] args)
    {
       Map<String, List<String>>    offerings;
       List<String>                 course;
       

       offerings = new HashMap<String, List<String>>();


       
       // Sections of CS139
       course = new ArrayList<String>();
       course.add("Harris, J.A.");
       course.add("Harris, N.L.");
       
       offerings.put("CS139", course);


       
       // Sections of CS159
       course = new ArrayList<String>();
       course.add("Bernstein");
       course.add("Harris, N.L.");
       
       offerings.put("CS159", course);
       

       
       // Sections of CS446
       course = new ArrayList<String>();
       course.add("Bernstein");
       course.add("Fox");
       
       offerings.put("CS446", course);
    }
    
}
