Uses of Class
yearreview.app.util.xml.XmlNode
Package
Description
-
Uses of XmlNode in yearreview.app.config
Modifier and TypeFieldDescriptionprivate XmlNode
ConfigParser.dataSources
Configuration for the data sources.private XmlNode
ConfigParser.widgets
Configuration for the widgets.Modifier and TypeMethodDescriptionConfigParser.getDataSourcesSettings()
Gets the configuration for the data sources.ConfigParser.getWidgetSettings()
Gets the configuration for thewidgets
.Modifier and TypeMethodDescriptionprivate void
ConfigParser.parseSettings
(XmlNode settings) Parses the settings part of the configuration file. -
Uses of XmlNode in yearreview.app.data
ModifierConstructorDescriptionDataManager
(XmlNode dataConfig) Creates a DataManager from a given configuration. -
Uses of XmlNode in yearreview.app.data.sources
Modifier and TypeMethodDescriptionstatic DataSource
DataSource.getDataSource
(XmlNode config) Gets a DataSource by the name stored inside the configuration and initializes it with that configuration.abstract void
DataSource.parseConfig
(XmlNode c) Parses the configuration of the DataSource.ModifierConstructorDescriptionConstructs a DataSource from a configuration. -
Uses of XmlNode in yearreview.app.data.sources.audio
Modifier and TypeMethodDescriptionvoid
AudioDataSource.parseConfig
(XmlNode config) Parses the passed configuration, initializes the databse and creates the adapters.ModifierConstructorDescriptionConstructs a new AudioDataSource from a given configuration. -
Uses of XmlNode in yearreview.app.data.sources.audio.adapter
Modifier and TypeMethodDescriptionstatic AudioDatabaseAdapter
AudioDatabaseAdapter.getAdapter
(AudioDatabase database, XmlNode config) Creates a new Adapter by its name.ModifierConstructorDescriptionSpotifyAdapter
(AudioDatabase database, XmlNode config) Constructs a new SpotifyAdapter with a database to use and a configuration. -
Uses of XmlNode in yearreview.app.data.sources.fitness
Modifier and TypeMethodDescriptionvoid
FitnessDataSource.parseConfig
(XmlNode config) Parses the configuration and initializes the adapters.ModifierConstructorDescriptionConstructs a FitnessDataSource using a configuration. -
Uses of XmlNode in yearreview.app.data.sources.fitness.adapters
Modifier and TypeMethodDescriptionstatic FitnessAdapter
FitnessAdapter.getAdapter
(FitnessDatabase database, XmlNode config) Static function to get an adapter by its nameModifierConstructorDescriptionStravaAdapter
(FitnessDatabase database, XmlNode config) Constructs a StravaAdapter from a FitnessDatabase and configuration -
Uses of XmlNode in yearreview.app.grid
ModifierConstructorDescriptionGridManager
(XmlNode gridConfig) Constructs aGridManager
from a given configuration. -
Uses of XmlNode in yearreview.app.grid.widgets
Modifier and TypeMethodDescriptionstatic Widget
Creates a widget from positional data and a configuration.ModifierConstructorDescriptionTestWidget
(float x, float y, float w, float h, XmlNode c) Constructs a TestWidget at a given position with a configuration (that isn't used).TestWidgetAnimation
(float x, float y, float w, float h, XmlNode c) Constructs a TestWidgetAnimation at a given position with a configuration (that isn't used). -
Uses of XmlNode in yearreview.app.util.xml
Modifier and TypeMethodDescriptionXmlNode.getChildByName
(String name) Gets a child of this node by name.static XmlNode
XmlNode.parseXmlFile
(File f) Parses a given XML-file and return the root-XmlNode.