summaryrefslogtreecommitdiff
path: root/sources/prefs/VSPrefs.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 09:03:10 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 09:03:10 +0000
commitbb1dbccae485263ea5182546006339870c57b367 (patch)
tree23cfaf1175721d5744bd4f7eaa25b78c71c39c60 /sources/prefs/VSPrefs.java
parenta10580c984fe08374d4c591102115966e5ed31d1 (diff)
comments.
Diffstat (limited to 'sources/prefs/VSPrefs.java')
-rw-r--r--sources/prefs/VSPrefs.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java
index 65dfcde..611e0fa 100644
--- a/sources/prefs/VSPrefs.java
+++ b/sources/prefs/VSPrefs.java
@@ -78,13 +78,14 @@ public abstract class VSPrefs implements Serializable {
* The Class SettingRestriction.
*/
public class SettingRestriction implements Serializable {
+ private static final long serialVersionUID = 1L;
}
/**
* The Class IntegerSettingRestriction.
*/
public class IntegerSettingRestriction extends SettingRestriction {
-
+ private static final long serialVersionUID = 1L;
/** The min value. */
private int minValue;
@@ -125,7 +126,8 @@ public abstract class VSPrefs implements Serializable {
* The Class StringSettingRestriction.
*/
public class StringSettingRestriction extends SettingRestriction {
-
+ private static final long serialVersionUID = 1L;
+
/** The possible selections. */
Vector<String> possibleSelections;