package presentation; import java.util.Collection; /** *This class models the export dialog. The export dialog contains three fields. *These three fields are the location to export the folder to, the name of the exported *folder, and a collection of the layers to export. This is derived from the Section 2.4.3 *of the requirements. */ public abstract class ExportDialog { /** *The location to export the presentation to. */ String location; /** *The name of the folder to export the presentation into. */ String foldername; /** *The collection of layers to export. */ Collection availableLayers; }