git-svn-id: https://svn.lifesci.dundee.ac.uk/svn/repository/trunk@165
be28352e-c001-0410-b1a7-
c7978e42abec
--- /dev/null
+/**
+ *
+ */
+package org.vamsas.client.simpleclient;
+
+import java.io.File;
+
+
+/**
+ * base class for generic list storage and retrieval operations from a locked IO file
+ * TODO: LATER: generalize for all list storage and retrieval operations
+ * (pull-up from ClientsFile object)
+ */
+public class ListFile extends SessionFile {
+
+ /**
+ * @param file
+ */
+ public ListFile(File file) throws java.io.IOException {
+ super(file);
+ if (!this.sessionFile.exists())
+ this.sessionFile.createNewFile();
+ }
+
+}