Package de.xima.fc.pluginstore
Class SelectedPluginStoreItem
- java.lang.Object
 - 
- de.xima.fc.pluginstore.SelectedPluginStoreItem
 
 
- 
- All Implemented Interfaces:
 Serializable
public final class SelectedPluginStoreItem extends Object implements Serializable
Model for a selected plugin store item. Contains aPluginStoreItemas well as some additional details about the selected item.- Since:
 - 8.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SelectedPluginStoreItem(PluginStoreItem item, List<PluginChangelogEntry> changelog)Creates a new model with the given data. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PluginChangelogEntry>getChangelog()Gets the list of changelog entries, sorted from the highest version to the lowest version.PluginStoreItemgetItem()Gets the base store item data for the selected plugin. 
 - 
 
- 
- 
Constructor Detail
- 
SelectedPluginStoreItem
public SelectedPluginStoreItem(PluginStoreItem item, List<PluginChangelogEntry> changelog)
Creates a new model with the given data.- Parameters:
 item- The base store item data for the selected plugin.changelog- The list of changelog entries, sorted from the highest version to the lowest version.
 
 - 
 
- 
Method Detail
- 
getChangelog
public List<PluginChangelogEntry> getChangelog()
Gets the list of changelog entries, sorted from the highest version to the lowest version.- Returns:
 - A list of all changelogs.
 
 
- 
getItem
public PluginStoreItem getItem()
Gets the base store item data for the selected plugin.- Returns:
 - The base store item data.
 
 
 - 
 
 -