In this assignment,
you will practice solving a problem using object-oriented
programming and specifically, you will use the concept of
object aggregation (i.e., has-a
relationship between objects). You will implement a Java
application, called MovieApplication that could be used in the
movie industry. You are asked to implement three classes: Movie,
Distributor, and MovieDriver. Each of these classes is described
below.
The Movie class
represents a movie and has the following attributes: name (of type
String), directorsName (of type String),...