Package org.apache.tools.ant.taskdefs
Class Pack
- java.lang.Object
- 
- org.apache.tools.ant.ProjectComponent
- 
- org.apache.tools.ant.Task
- 
- org.apache.tools.ant.taskdefs.Pack
 
 
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.io.Filesourceprotected java.io.FilezipFile- 
Fields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
 
- 
 - 
Constructor SummaryConstructors Constructor Description Pack()
 - 
Method SummaryModifier and Type Method Description voidaddConfigured(ResourceCollection a)Set the source resource.voidexecute()validate, then hand off to the subclassResourcegetSrcResource()The source resource.protected abstract voidpack()subclasses must implement this method to do their compressionvoidsetDestfile(java.io.File zipFile)the required destination file.voidsetSrc(java.io.File src)the file to compress; required.voidsetSrcResource(Resource src)The resource to pack; required.voidsetZipfile(java.io.File zipFile)the required destination file.protected booleansupportsNonFileResources()Whether this task can deal with non-file resources.protected voidzipFile(java.io.File file, java.io.OutputStream zOut)zip a file to an output streamprotected voidzipResource(Resource resource, java.io.OutputStream zOut)zip a resource to an output stream- 
Methods inherited from class org.apache.tools.ant.TaskbindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
 - 
Methods inherited from class org.apache.tools.ant.ProjectComponentclone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
 
- 
 
- 
- 
- 
Method Detail- 
setZipfilepublic void setZipfile(java.io.File zipFile) the required destination file.- Parameters:
- zipFile- the destination file
 
 - 
setDestfilepublic void setDestfile(java.io.File zipFile) the required destination file.- Parameters:
- zipFile- the destination file
 
 - 
setSrcpublic void setSrc(java.io.File src) the file to compress; required.- Parameters:
- src- the source file
 
 - 
setSrcResourcepublic void setSrcResource(Resource src) The resource to pack; required.- Parameters:
- src- resource to expand
 
 - 
addConfiguredpublic void addConfigured(ResourceCollection a) Set the source resource.- Parameters:
- a- the resource to pack as a single element Resource collection.
 
 - 
executepublic void execute() throws BuildExceptionvalidate, then hand off to the subclass- Overrides:
- executein class- Task
- Throws:
- BuildException- on error
 
 - 
zipFileprotected void zipFile(java.io.File file, java.io.OutputStream zOut) throws java.io.IOExceptionzip a file to an output stream- Parameters:
- file- the file to zip
- zOut- the output stream
- Throws:
- java.io.IOException- on error
 
 - 
zipResourceprotected void zipResource(Resource resource, java.io.OutputStream zOut) throws java.io.IOException zip a resource to an output stream- Parameters:
- resource- the resource to zip
- zOut- the output stream
- Throws:
- java.io.IOException- on error
 
 - 
packprotected abstract void pack() subclasses must implement this method to do their compression
 - 
getSrcResourcepublic Resource getSrcResource() The source resource.- Returns:
- the source.
- Since:
- Ant 1.7
 
 - 
supportsNonFileResourcesprotected boolean supportsNonFileResources() Whether this task can deal with non-file resources.This implementation returns false. - Returns:
- false.
- Since:
- Ant 1.7
 
 
- 
 
-