 


/**
 * The Video class represents a video object. Information about
 * the video is stored and can be retrieved.
 * 
 *@author Michael Kölling and David J. Barnes
 *@version 2002-05-02
 */
public class Video extends Item
{
    private String director;

    /**
     * Constructor for objects of class Video
     */
    public Video(String theTitle, String theDirector, int time)
    {
        super(theTitle, time);
        director = theDirector;      
    }
    
    /**
     * Constructor with gotIt parameter
     */
    public Video(String theTitle, String theDirector, 
                                     int time, boolean haveIt)
    {
        super(theTitle, time, haveIt);
        director = theDirector;
    }
    
    /**
     * Constructor with gotIt and comment parameters
     */
    public Video(String theTitle, String theDirector, 
                    int time, boolean haveIt, String comment)
    {
        super(theTitle, time, haveIt, comment);
        director = theDirector;
    }
}
