Class Expand7zipArchive
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.actions.Action
-
- com.zerog.ia.auto.project.actions.Expand7zipArchive
-
- All Implemented Interfaces:
OSHostable
,Referenceable
public final class Expand7zipArchive extends Action implements OSHostable
Expands a 7z file (LZMA encoding) to the disk
-
-
Constructor Summary
Constructors Constructor Description Expand7zipArchive()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDestinationName()
The destination where the file should be expanded to.java.lang.String
getExistingFilePath()
java.lang.String
getInstalledFile()
The bundled file that will be expanded.boolean
getShouldUninstall()
long
getSizeOfArchive()
FileType
getSourceFileType()
Whether the file to be expanded will be a bundled or existing one.java.lang.String
getSourceName()
java.lang.String
getSourcePath()
void
setDestinationName(java.lang.String DestinationName)
The destination where the file should be expanded to.void
setExistingFilePath(java.lang.String ExistingFilePath)
void
setInstalledFile(java.lang.String path)
The bundled file that will be expanded.void
setShouldUninstall(boolean ShouldUninstall)
void
setSizeOfArchive(long SizeOfArchive)
void
setSourceFileType(FileType sourceFileType)
Whether the file to be expanded will be a bundled or existing one.void
setSourceName(java.lang.String SourceName)
void
setSourcePath(java.lang.String SourcePath)
-
Methods inherited from class com.zerog.ia.auto.project.InstallableObject
getBelongsToUninstallPhase, getRollbackEnabledCancel, getRollbackEnabledError, getRuleExpression, getRules, getRulesLogicalOperation, getTagsInInstallPiece, setBelongsToUninstallPhase, setRollbackEnabledCancel, setRollbackEnabledError, setRuleExpression, setRulesLogicalOperation, setTagsInInstallPiece
-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getSourceFileType
public FileType getSourceFileType()
Whether the file to be expanded will be a bundled or existing one.
-
setSourceFileType
public void setSourceFileType(FileType sourceFileType)
Whether the file to be expanded will be a bundled or existing one.
-
getSourceName
public java.lang.String getSourceName()
-
setSourceName
public void setSourceName(java.lang.String SourceName)
-
getSourcePath
public java.lang.String getSourcePath()
-
setSourcePath
public void setSourcePath(java.lang.String SourcePath)
-
getExistingFilePath
public java.lang.String getExistingFilePath()
-
setExistingFilePath
public void setExistingFilePath(java.lang.String ExistingFilePath)
-
getShouldUninstall
public boolean getShouldUninstall()
-
setShouldUninstall
public void setShouldUninstall(boolean ShouldUninstall)
-
getSizeOfArchive
public long getSizeOfArchive()
-
setSizeOfArchive
public void setSizeOfArchive(long SizeOfArchive)
-
getDestinationName
public java.lang.String getDestinationName()
The destination where the file should be expanded to.
-
setDestinationName
public void setDestinationName(java.lang.String DestinationName)
The destination where the file should be expanded to.
-
setInstalledFile
public void setInstalledFile(java.lang.String path)
The bundled file that will be expanded.
-
getInstalledFile
public java.lang.String getInstalledFile()
The bundled file that will be expanded.
-
-