Package | Description |
---|---|
net.sourceforge.javadpkg |
Contains the interfaces and classes for reading and writing Debian packages.
|
net.sourceforge.javadpkg.impl |
The implementation of the interfaces and abstract classes.
|
Modifier and Type | Method and Description |
---|---|
Script |
DebianPackage.getConfig()
Returns the script for the configuration of the package.
|
Script |
DebianPackage.getPostInstall()
Returns the script which will be executed after the package is installed.
|
Script |
DebianPackage.getPostRemove()
Returns the script which will be executed after the package is removed.
|
Script |
DebianPackage.getPreInstall()
Returns the script which will be executed before the package is
installed.
|
Script |
DebianPackage.getPreRemove()
Returns the script which will be executed before the package is removed.
|
Script |
ScriptParser.parseScript(DataSource source,
Context context)
Parses a script from the specified source.
|
Script |
ScriptVariableReplacer.replaceScriptVariables(Script script,
Replacements replacements,
Context context)
Replaces the variables within the script.
|
Modifier and Type | Method and Description |
---|---|
void |
ScriptBuilder.buildScript(DataTarget target,
Script script)
Builds a script.
|
Script |
ScriptVariableReplacer.replaceScriptVariables(Script script,
Replacements replacements,
Context context)
Replaces the variables within the script.
|
void |
DebianPackageBuilder.setPostInstall(Script postInstall)
Sets the script which will be executed after the package is installed.
|
void |
DebianPackageBuilder.setPostRemove(Script postRemove)
Sets the script which will be executed after the package is removed.
|
void |
DebianPackageBuilder.setPreInstall(Script preInstall)
Sets the script which will be executed before the package is installed.
|
void |
DebianPackageBuilder.setPreRemove(Script preRemove)
Sets the script which will be executed before the package is removed.
|
Modifier and Type | Class and Description |
---|---|
class |
ScriptImpl
A
Script implementation. |
Modifier and Type | Method and Description |
---|---|
Script |
DebianPackageImpl.getConfig() |
Script |
DebianPackageImpl.getPostInstall() |
Script |
DebianPackageImpl.getPostRemove() |
Script |
DebianPackageImpl.getPreInstall() |
Script |
DebianPackageImpl.getPreRemove() |
Script |
ScriptParserImpl.parseScript(DataSource source,
Context context) |
Script |
ScriptVariableReplacerImpl.replaceScriptVariables(Script script,
Replacements replacements,
Context context) |
Modifier and Type | Method and Description |
---|---|
void |
ScriptBuilderImpl.buildScript(DataTarget target,
Script script) |
Script |
ScriptVariableReplacerImpl.replaceScriptVariables(Script script,
Replacements replacements,
Context context) |
void |
DebianPackageImpl.setConfig(Script config)
Sets the script for the configuration of the package.
|
void |
DebianPackageImpl.setPostInstall(Script postInstall)
Sets the script which will be executed after the package is installed.
|
void |
DebianPackageBuilderImpl.setPostInstall(Script postInstall) |
void |
DebianPackageImpl.setPostRemove(Script postRemove)
Sets the script which will be executed after the package is removed.
|
void |
DebianPackageBuilderImpl.setPostRemove(Script postRemove) |
void |
DebianPackageImpl.setPreInstall(Script preInstall)
Sets the script which will be executed before the package is installed.
|
void |
DebianPackageBuilderImpl.setPreInstall(Script preInstall) |
void |
DebianPackageImpl.setPreRemove(Script preRemove)
Sets the script which will be executed after the package is installed.
|
void |
DebianPackageBuilderImpl.setPreRemove(Script preRemove) |
Constructor and Description |
---|
DebianPackageBuilderImpl(Script defaultPreInstall,
Script defaultPostInstall,
Script defaultPreRemove,
Script defaultPostRemove)
Creates a builder.
|
Copyright © 2015–2019. All rights reserved.