org.apache.maven.plugin.assembly.model
Class UnpackOptions

java.lang.Object
  extended by org.apache.maven.plugin.assembly.model.UnpackOptions
All Implemented Interfaces:
Serializable

public class UnpackOptions
extends Object
implements Serializable

Specifies options for including/excluding/filtering items extracted from an archive.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
UnpackOptions()
           
 
Method Summary
 void addExclude(String string)
          Method addExclude.
 void addInclude(String string)
          Method addInclude.
 List<String> getExcludes()
          Method getExcludes.
 List<String> getIncludes()
          Method getIncludes.
 boolean isFiltered()
          Get whether to filter symbols in the files as they are unpacked from the archive, using properties from the build configuration.
 void removeExclude(String string)
          Method removeExclude.
 void removeInclude(String string)
          Method removeInclude.
 void setExcludes(List<String> excludes)
          Set set of patterns for matching items to be excluded from an archive as it is unpacked.
 void setFiltered(boolean filtered)
          Set whether to filter symbols in the files as they are unpacked from the archive, using properties from the build configuration.
 void setIncludes(List<String> includes)
          Set set of patterns for matching items to be included from an archive as it is unpacked.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UnpackOptions

public UnpackOptions()
Method Detail

addExclude

public void addExclude(String string)
Method addExclude.

Parameters:
string -

addInclude

public void addInclude(String string)
Method addInclude.

Parameters:
string -

getExcludes

public List<String> getExcludes()
Method getExcludes.

Returns:
List

getIncludes

public List<String> getIncludes()
Method getIncludes.

Returns:
List

isFiltered

public boolean isFiltered()
Get whether to filter symbols in the files as they are unpacked from the archive, using properties from the build configuration.

Returns:
boolean

removeExclude

public void removeExclude(String string)
Method removeExclude.

Parameters:
string -

removeInclude

public void removeInclude(String string)
Method removeInclude.

Parameters:
string -

setExcludes

public void setExcludes(List<String> excludes)
Set set of patterns for matching items to be excluded from an archive as it is unpacked.

Parameters:
excludes -

setFiltered

public void setFiltered(boolean filtered)
Set whether to filter symbols in the files as they are unpacked from the archive, using properties from the build configuration.

Parameters:
filtered -

setIncludes

public void setIncludes(List<String> includes)
Set set of patterns for matching items to be included from an archive as it is unpacked.

Parameters:
includes -


Copyright © 2002-2012 The Apache Software Foundation. All Rights Reserved.