Module ilusr.persistencelib
Interface IPersistenceManager
-
- All Known Implementing Classes:
XmlConfigurationManager
public interface IPersistenceManager
- Author:
- Jeff Riggle
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
load()
Loads the persistence object from disk to memory.void
prepare()
Prepares the persistence object to be saved to disk.void
save()
Saves the persistence object to disk.
-
-
-
Method Detail
-
prepare
void prepare() throws TransformerConfigurationException, ParserConfigurationException
Prepares the persistence object to be saved to disk.
-
save
void save() throws TransformerException, ParserConfigurationException
Saves the persistence object to disk.
-
load
void load() throws SAXException, IOException, TransformerConfigurationException, ParserConfigurationException
Loads the persistence object from disk to memory.
-
-