View Javadoc
1   package org.codehaus.plexus.archiver;
2   
3   import javax.annotation.CheckForNull;
4   
5   import java.io.File;
6   
7   /**
8    * A file set, which consists of the files and directories in
9    * an archive.
10   *
11   * @since 1.0-alpha-9
12   */
13  public interface ArchivedFileSet extends BaseFileSet {
14  
15      /**
16       * Returns the archive file.
17       */
18      @CheckForNull
19      File getArchive();
20  }