Uses of Class
com.pnfsoftware.jeb.core.Version
Packages that use Version
Package
Description
This package and its sub-packages contain types and interfaces used to build JEB clients and interact with client-specific sides of a JEB instance.
Types used by scripts to interact with the analysis results presented by a JEB client.
The core package and sub-packages define classes and interfaces to interact with and
develop JEB back-end plugins.
This package and sub-packages contain all types used by Android code analysis plugins.
-
Uses of Version in com.pnfsoftware.jeb.client
Fields in com.pnfsoftware.jeb.client declared as VersionMethods in com.pnfsoftware.jeb.client that return VersionModifier and TypeMethodDescriptionfinal Version
AbstractClientContext.getLatestAvailableUpdate()
final Version
AbstractContext.getSoftwareVersion()
Retrieve the global software version.SoftwareBuildInfo.getVersion()
Methods in com.pnfsoftware.jeb.client with parameters of type VersionModifier and TypeMethodDescriptionabstract void
AbstractClientContext.onUpdatedSoftware
(String changelist, Version oldVersion) Notify a concrete client that a new version of JEB is being run for the first time.void
HeadlessClientContext.onUpdatedSoftware
(String changelist, Version oldVersion) final void
AbstractClientContext.setLatestAvailableUpdate
(Version version) void
SoftwareBuildInfo.setVersion
(Version version) Constructors in com.pnfsoftware.jeb.client with parameters of type Version -
Uses of Version in com.pnfsoftware.jeb.client.api
Methods in com.pnfsoftware.jeb.client.api that return VersionModifier and TypeMethodDescriptionIClientContext.getSoftwareVersion()
Get the JEB back-end software version. -
Uses of Version in com.pnfsoftware.jeb.core
Fields in com.pnfsoftware.jeb.core declared as VersionModifier and TypeFieldDescriptionprotected Version
PluginInformation.maxCoreVersion
protected Version
PluginInformation.minCoreVersion
protected Version
PluginInformation.version
Methods in com.pnfsoftware.jeb.core that return VersionModifier and TypeMethodDescriptionstatic Version
Version.create
(int major, int minor) Static builder, equivalent ofVersion(int, int)
.static Version
Version.create
(int major, int minor, int buildid) Static builder, equivalent ofVersion(int, int, int)
.static Version
Version.create
(int major, int minor, int buildid, long timestamp) Static builder, equivalent ofVersion(int, int, int, long)
.static Version
Version.create
(int major, int minor, int buildid, long timestamp, int channel) Static builder, equivalent ofVersion(int, int, int, long, int)
.static Version
Version.fromInt
(int val) Create a version object from an integer generated bytoInt()
.IPluginInformation.getMaximumCoreVersion()
Get the maximum version of JEB core required to run this plugin.PluginInformation.getMaximumCoreVersion()
IPluginInformation.getMinimumCoreVersion()
Get the minimum version of JEB core required to run this plugin.PluginInformation.getMinimumCoreVersion()
ICoreContext.getVersion()
Get the version of this core.IPluginInformation.getVersion()
Get the plugin version.PluginInformation.getVersion()
ScriptMetadata.getVersion()
static Version
Version.parseFromFile
(File f) Read a file which should contain a single string containing a version number.static Version
Version.parseFromString
(String s) Parse a version string into a Version object.Methods in com.pnfsoftware.jeb.core with parameters of type VersionModifier and TypeMethodDescriptionint
int
Version.compareToIgnoreChannel
(Version o) int
Version.compareToIgnoreTimestamp
(Version o) int
Version.compareToIgnoreTimestampAndChannel
(Version o) void
EditablePluginInformation.setVersion
(Version version) Constructors in com.pnfsoftware.jeb.core with parameters of type VersionModifierConstructorDescriptionPluginInformation
(String name, String description, String author, Version version) Create a new plugin information object, without specifying JEB core version requirements.PluginInformation
(String name, String description, String author, Version version, Version minCoreVersion) Create a new plugin information objects.PluginInformation
(String name, String description, String author, Version version, Version minCoreVersion, Version maxCoreVersion) Create a new plugin information objects.Copy constructor. -
Uses of Version in com.pnfsoftware.jeb.core.units.code.android
Methods in com.pnfsoftware.jeb.core.units.code.android that return Version