|
Gridarta Editor
|
Class for holding version information and quickly comparing it. More...
Collaboration diagram for net.sf.gridarta.updater.Updater.VersionInfo:Private Member Functions | |
| VersionInfo () | |
| Private constructor used for unavailable versions. More... | |
| VersionInfo (@NotNull final String version, @NotNull final String timestamp, @NotNull final String developer) | |
| Private constructor to map the strings. More... | |
| VersionInfo (@NotNull final ResourceBundle bundle, @NotNull final String prefix) | |
| Create update information from a ResourceBundle. More... | |
Private Attributes | |
| final String | developer |
| Update information: Developer that created the update version. More... | |
| final String | timestamp |
| Update information: Time stamp of update version. More... | |
| final String | version |
| Update information: Version of update version, usually the build number. More... | |
Static Private Attributes | |
| static final VersionInfo | UNAVAILABLE = new VersionInfo() |
| Special Version "unavailable". More... | |
Class for holding version information and quickly comparing it.
Definition at line 250 of file Updater.java.
|
private |
Private constructor used for unavailable versions.
Definition at line 280 of file Updater.java.
|
private |
Private constructor to map the strings.
| version | the version |
| timestamp | the timestamp |
| developer | the developer |
Definition at line 290 of file Updater.java.
References net.sf.gridarta.updater.Updater.VersionInfo.developer, net.sf.gridarta.updater.Updater.VersionInfo.timestamp, and net.sf.gridarta.updater.Updater.VersionInfo.version.
|
private |
Create update information from a ResourceBundle.
The ResourceBundle should have Strings for
,
and
.
| bundle | ResourceBundle to create update information from |
| prefix | Prefix for update information within the resource bundle |
Definition at line 304 of file Updater.java.
|
private |
Update information: Developer that created the update version.
Definition at line 269 of file Updater.java.
Referenced by net.sf.gridarta.updater.Updater.VersionInfo.VersionInfo().
|
private |
Update information: Time stamp of update version.
Definition at line 263 of file Updater.java.
Referenced by net.sf.gridarta.updater.Updater.VersionInfo.VersionInfo().
|
staticprivate |
Special Version "unavailable".
Definition at line 275 of file Updater.java.
Referenced by net.sf.gridarta.updater.Updater.run().
|
private |
Update information: Version of update version, usually the build number.
Definition at line 257 of file Updater.java.
Referenced by net.sf.gridarta.updater.Updater.VersionInfo.VersionInfo().