1 package org.catacomb.interlish.service;
2
3 import java.io.File;
4
5
6 public interface AppPersistProvider {
7
8 boolean hasValueFor(String pel);
9
10 String getValueFor(String pel);
11
12 void addRecentFile(File f);
13
14 void setValue(String lab, String val);
15
16 void forceExit();
17
18 boolean hasValue(String tag, String val);
19
20 String[] getRecentPaths();
21
22 }