Package fileLogic
Interface BaseWriter
- All Known Implementing Classes:
XMLWriter
public interface BaseWriter
Base Writer interface. Should be implemented for using in Saver class.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writeToFile
(String path, LinkedHashMap<String[], String> values) Base method for writing collection in file.
-
Method Details
-
writeToFile
Base method for writing collection in file. You should provide Address-Value interpretation for normal writing.- Parameters:
path
- Full path to file. If file will don't exist, method will try to create it automatically.values
- Address-value interpretation of Collection.
-