Package org.apache.maven.model.v3_0_0
Class FileSet
- java.lang.Object
-
- org.apache.maven.model.v3_0_0.PatternSet
-
- org.apache.maven.model.v3_0_0.FileSet
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
Resource
,SourceModification
public class FileSet extends PatternSet implements java.io.Serializable
A PatternSet for files.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
directory
Describe the directory where the resources are stored.
-
Constructor Summary
Constructors Constructor Description FileSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDirectory()
Get describe the directory where the resources are stored.void
setDirectory(java.lang.String directory)
Set describe the directory where the resources are stored.-
Methods inherited from class org.apache.maven.model.v3_0_0.PatternSet
addExclude, addInclude, getExcludes, getIncludes, removeExclude, removeInclude, setExcludes, setIncludes
-
-
-
-
Method Detail
-
getDirectory
public java.lang.String getDirectory()
Get describe the directory where the resources are stored. The path is relative to the POM.- Returns:
- String
-
setDirectory
public void setDirectory(java.lang.String directory)
Set describe the directory where the resources are stored. The path is relative to the POM.- Parameters:
directory
- a directory object.
-
-