org.apache.maven.shared.model.fileset

Class SetBase

public class SetBase extends Object implements Serializable

null

Version: $Revision$ $Date$

Method Summary
voidaddExclude(String string)
Method addExclude
voidaddInclude(String string)
Method addInclude
StringgetDirectoryMode()
Get Similar to a UNIX permission.
ListgetExcludes()
Method getExcludes
String[]getExcludesArray()
Return the file-set exclusion rules in array form.
StringgetFileMode()
Get Similar to a UNIX permission.
ListgetIncludes()
Method getIncludes
String[]getIncludesArray()
Return the file-set inclusion rules in array form.
StringgetModelEncoding()
StringgetOutputDirectory()
Get Specifies the output directory relative to the root of the root directory of the assembly.
booleanisFollowSymlinks()
Get Specifies whether symbolic links should be traversed, or handled as-is.
voidremoveExclude(String string)
Method removeExclude
voidremoveInclude(String string)
Method removeInclude
voidsetDirectoryMode(String directoryMode)
Set Similar to a UNIX permission.
voidsetExcludes(List excludes)
Set When <exclude> subelements are present, they define a set of files and directory to exclude.
voidsetFileMode(String fileMode)
Set Similar to a UNIX permission.
voidsetFollowSymlinks(boolean followSymlinks)
Set Specifies whether symbolic links should be traversed, or handled as-is.
voidsetIncludes(List includes)
Set When <include> subelements are present, they define a set of files and directory to include.
voidsetModelEncoding(String modelEncoding)
voidsetOutputDirectory(String outputDirectory)
Set Specifies the output directory relative to the root of the root directory of the assembly.

Method Detail

addExclude

public void addExclude(String string)
Method addExclude

Parameters: string

addInclude

public void addInclude(String string)
Method addInclude

Parameters: string

getDirectoryMode

public String getDirectoryMode()
Get Similar to a UNIX permission. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the default value of 0644 translates to User read-write, Group and Other read-only. (more on unix-style permissions)

getExcludes

public List getExcludes()
Method getExcludes

getExcludesArray

public String[] getExcludesArray()
Return the file-set exclusion rules in array form.

getFileMode

public String getFileMode()
Get Similar to a UNIX permission. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the default value of 0644 translates to User read-write, Group and Other read-only. (more on unix-style permissions)

getIncludes

public List getIncludes()
Method getIncludes

getIncludesArray

public String[] getIncludesArray()
Return the file-set inclusion rules in array form.

getModelEncoding

public String getModelEncoding()

getOutputDirectory

public String getOutputDirectory()
Get Specifies the output directory relative to the root of the root directory of the assembly. For example, "log" will put the specified files in the log directory.

isFollowSymlinks

public boolean isFollowSymlinks()
Get Specifies whether symbolic links should be traversed, or handled as-is.

removeExclude

public void removeExclude(String string)
Method removeExclude

Parameters: string

removeInclude

public void removeInclude(String string)
Method removeInclude

Parameters: string

setDirectoryMode

public void setDirectoryMode(String directoryMode)
Set Similar to a UNIX permission. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the default value of 0644 translates to User read-write, Group and Other read-only. (more on unix-style permissions)

Parameters: directoryMode

setExcludes

public void setExcludes(List excludes)
Set When <exclude> subelements are present, they define a set of files and directory to exclude.

Parameters: excludes

setFileMode

public void setFileMode(String fileMode)
Set Similar to a UNIX permission. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the default value of 0644 translates to User read-write, Group and Other read-only. (more on unix-style permissions)

Parameters: fileMode

setFollowSymlinks

public void setFollowSymlinks(boolean followSymlinks)
Set Specifies whether symbolic links should be traversed, or handled as-is.

Parameters: followSymlinks

setIncludes

public void setIncludes(List includes)
Set When <include> subelements are present, they define a set of files and directory to include.

Parameters: includes

setModelEncoding

public void setModelEncoding(String modelEncoding)

setOutputDirectory

public void setOutputDirectory(String outputDirectory)
Set Specifies the output directory relative to the root of the root directory of the assembly. For example, "log" will put the specified files in the log directory.

Parameters: outputDirectory

Copyright © {inceptionYear}-2008 null. All Rights Reserved.