Static Private Attributes | |
static final int | DIRECTORY_HISTORY_SIZE = 30 |
static final int | PROJECT_HISTORY_SIZE = 10 |
static final StyledWrapper | defaultWrapper = new StyledWrapper() |
static final StyledWrapper | measuringWrapper = new StyledWrapper() |
static final StyledWrapper | doneRecentlyWrapper = new StyledWrapper() |
static Properties | properties = new Properties() |
static File | propertiesFile = Ikayaki.PROPERTIES_FILE |
static boolean | propertiesModified = false |
static List< MeasurementSequence > | sequences = new ArrayList<MeasurementSequence>() |
static File | sequencesFile = Ikayaki.SEQUENCES_FILE |
static boolean | sequencesModified = false |
static List< File > | directoryHistory = new LinkedList<File>() |
static List< File > | projectHistory = new LinkedList<File>() |
static LastExecutor | autosaveQueue = new LastExecutor(500, true) |
static Runnable | autosaveRunnable |
Definition at line 47 of file Settings.java.
|
Queue for scheduling save operations after properties/sequences have been changed Definition at line 99 of file Settings.java. |
|
Initial value: new Runnable() { public void run() { saveNow(); } } Definition at line 104 of file Settings.java. |
|
Definition at line 52 of file Settings.java. |
|
Definition at line 49 of file Settings.java. |
|
List for holding the recently used directories. Used to cache the values read from the properties. Definition at line 89 of file Settings.java. |
|
Definition at line 54 of file Settings.java. |
|
Definition at line 53 of file Settings.java. |
|
Definition at line 50 of file Settings.java. |
|
List for holding the recently used project files. Used to cache the values read from the properties. Definition at line 94 of file Settings.java. |
|
All properties in a map. Definition at line 59 of file Settings.java. |
|
File where the properties will be saved in XML format Definition at line 64 of file Settings.java. |
|
true if the properties have been modified, otherwise false Definition at line 69 of file Settings.java. |
|
All saved sequences Definition at line 74 of file Settings.java. |
|
File where the sequences will be saved in XML format Definition at line 79 of file Settings.java. |
|
true if the sequences have been modified, otherwise false Definition at line 84 of file Settings.java. |