package presentation; import java.util.Collection; /** *The ExportedPresentation class represents an exported presentation that is created when a user *uses the ExportDialog. When a user exports a presentation it exports a collection of ExportedSlides *and a collection of Topics, that represents the outline associated with the presentation. This is *represented in section 2.4.3 of the requirements document. */ public abstract class ExportedPresentation { /** *The collection of exported slides. */ Collection slides; /** *The collection of topics, that represent the outline */ Collection outline; }