1 package org.codehaus.plexus.archiver;
2
3 import java.io.File;
4
5 /**
6 * A file set, which consists of the files and directories in
7 * a common base directory.
8 *
9 * @since 1.0-alpha-9
10 */
11 public interface FileSet extends BaseFileSet {
12
13 /**
14 * Returns the file sets base directory.
15 */
16 File getDirectory();
17 }