diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-12 21:19:36 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-12 21:19:36 +0300 |
| commit | 5c5f252d5c7a2bdfefd4fbe54a7ae64537a64874 (patch) | |
| tree | 1a4741441c7463cd3b5c97cca98fbfd1bc91519f /sources/prefs/VSPrefs.java | |
| parent | ea4f22311b639561856f37c8ac872af2cd9d55dd (diff) | |
Restructure project to use Maven exclusively and bump to v1.0.1-SNAPSHOT
- Remove legacy Ant build system (build.xml, sources/ directory)
- Migrate to Maven-only build with standard directory structure
- Add comprehensive Maven documentation and JAVA_HOME setup for Fedora
- Update pom.xml with exec plugin and bump version to 1.0.1-SNAPSHOT
- Add CLAUDE.md for development guidance
- Update README.md with detailed build/run/clean instructions
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'sources/prefs/VSPrefs.java')
| -rw-r--r-- | sources/prefs/VSPrefs.java | 1163 |
1 files changed, 0 insertions, 1163 deletions
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java deleted file mode 100644 index e7b5295..0000000 --- a/sources/prefs/VSPrefs.java +++ /dev/null @@ -1,1163 +0,0 @@ -package prefs; - -import java.awt.Color; -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.Set; -import java.util.Vector; - -import serialize.VSSerialize; - -/** - * The class VSPrefs, this class is for dynamic data storage. It can hold - * various different types such as Boolean, Floats, Integers, Strings, Colors. - * - * @author Paul C. Buetow - */ -public class VSPrefs { - /** The Constant BOOLEAN_PREFIX. */ - public static final String BOOLEAN_PREFIX = "Boolean: "; - - /** The Constant COLOR_PREFIX. */ - public static final String COLOR_PREFIX = "Color: "; - - /** The Constant FLOAT_PREFIX. */ - public static final String FLOAT_PREFIX = "Float: "; - - /** The Constant INTEGER_PREFIX. */ - public static final String INTEGER_PREFIX = "Integer: "; - - /** The Constant VECTOR_PREFIX. */ - public static final String VECTOR_PREFIX = "Vector: "; - - /** The Constant LONG_PREFIX. */ - public static final String LONG_PREFIX = "Long: "; - - /** The Constant STRING_PREFIX. */ - public static final String STRING_PREFIX = "String: "; - - /** The color prefs. */ - private HashMap<String,Color> colorPrefs; - - /** The float prefs. */ - private HashMap<String,Float> floatPrefs; - - /** The integer prefs. */ - private HashMap<String,Integer> integerPrefs; - - /** The integer vector prefs. */ - private HashMap<String,Vector<Integer>> vectorPrefs; - - /** The long prefs. */ - private HashMap<String,Long> longPrefs; - - /** The setting restriction prefs. */ - private HashMap<String,VSPrefsRestriction> restrictions; - - /** The description prefs. */ - private HashMap<String,String> descriptionPrefs; - - /** The string prefs. */ - private HashMap<String,String> stringPrefs; - - /** The boolean prefs. */ - private HashMap<String,Boolean> booleanPrefs; - - /** The object prefs. */ - private HashMap<String,Object> objectPrefs; - - /** The units. */ - private HashMap<String,String> units; - - /** The id counter. */ - private static int idCounter; - - /** The id. */ - protected int id; - - /** - * Instantiates a new lang.process.removeprefs. - */ - public VSPrefs() { - colorPrefs = new HashMap<String,Color>(); - descriptionPrefs = new HashMap<String,String>(); - floatPrefs = new HashMap<String,Float>(); - integerPrefs = new HashMap<String,Integer>(); - vectorPrefs = new HashMap<String,Vector<Integer>>(); - longPrefs = new HashMap<String,Long>(); - restrictions = new HashMap<String,VSPrefsRestriction>(); - stringPrefs = new HashMap<String,String>(); - booleanPrefs = new HashMap<String,Boolean>(); - objectPrefs = new HashMap<String,Object>(); - units = new HashMap<String,String>(); - id = ++idCounter; - } - - /** - * Clear. - */ - protected synchronized void clear() { - colorPrefs.clear(); - floatPrefs.clear(); - integerPrefs.clear(); - vectorPrefs.clear(); - longPrefs.clear(); - stringPrefs.clear(); - booleanPrefs.clear(); - objectPrefs.clear(); - descriptionPrefs.clear(); - restrictions.clear(); - } - - /* Unit methods */ - - /** - * Gets the unit. - * - * @param fullKey the full key - * - * @return the unit - */ - public synchronized String getUnit(String fullKey) { - return units.get(fullKey); - } - - /** - * Sets the unit. - * - * @param key the key - * @param unit the unit - */ - public synchronized void initUnit(String key, String unit) { - if (unit == null /*|| units.containsKey(key)*/) - return; - units.put(key, unit); - } - - /* Description methods */ - /** - * Sets the description if unset. - * - * @param key the key - * @param descr the descr - */ - public synchronized void initDescription(String key, String descr) { - if (descr == null /*|| descriptionPrefs.containsKey(key)*/) - return; - descriptionPrefs.put(key, descr); - } - - /** - * Gets the description. - * - * @param fullKey the full key - * - * @return the description - */ - public synchronized String getDescription(String fullKey) { - return descriptionPrefs.get(fullKey); - } - - /* Restriction methods */ - - /** - * Gets the restriction. - * - * @param fullKey the full key - * - * @return the restriction - */ - public synchronized VSPrefsRestriction getRestriction(String fullKey) { - return restrictions.get(fullKey); - } - - /** - * Sets the restriction. - * - * @param key the key - * @param settingRestriction the setting restriction - */ - public synchronized void initRestriction(String key, - VSPrefsRestriction settingRestriction) { - restrictions.put(key, settingRestriction); - } - - /* Object methods */ - - /** - * Object exists. - * - * @param key the key - * - * @return true, if successful - */ - public synchronized boolean objectExists(String key) { - return null != objectPrefs.get(key); - } - - /** - * Gets the object. - * - * @param key the key - * - * @return the object - */ - public synchronized Object getObject(String key) { - Object val = objectPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such object config value \"" + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Removes the object. - * - * @param key the key - */ - public synchronized void removeObject(String key) { - objectPrefs.remove(key); - } - - /** - * Sets the object. - * - * @param key the key - * @param val the val - */ - public synchronized void setObject(String key, Object val) { - objectPrefs.put(key, val); - } - - /* Boolean methods */ - - /** - * Gets the boolean. - * - * @param key the key - * - * @return the boolean - */ - public boolean getBoolean(String key) { - return getBooleanObj(key).booleanValue(); - } - - /** - * Gets the boolean key set. - * - * @return the boolean key set - */ - public synchronized Set<String> getBooleanKeySet() { - return booleanPrefs.keySet(); - } - - /** - * Gets the boolean obj. - * - * @param key the key - * - * @return the boolean obj - */ - public synchronized Boolean getBooleanObj(String key) { - Boolean val = booleanPrefs.get(key); - - if (val == null) - return Boolean.valueOf(false); - - return val; - } - - /** - * Inits the boolean. - * - * @param key the key - * @param val the val - */ - public synchronized void initBoolean(String key, Boolean val) { - if (!booleanPrefs.containsKey(key)) - booleanPrefs.put(key, val); - } - - /** - * Inits the boolean. - * - * @param key the key - * @param val the val - */ - public void initBoolean(String key, boolean val) { - initBoolean(key, Boolean.valueOf(val)); - } - - /** - * Inits the boolean. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initBoolean(String key, boolean val, String descr) { - initBoolean(key, val); - initDescription(BOOLEAN_PREFIX + key, descr); - } - - /** - * Sets the boolean. - * - * @param key the key - * @param val the val - */ - public synchronized void setBoolean(String key, Boolean val) { - booleanPrefs.put(key, val); - } - - /** - * Sets the boolean. - * - * @param key the key - * @param val the val - */ - public void setBoolean(String key, boolean val) { - setBoolean(key, Boolean.valueOf(val)); - } - - /* Color methods */ - - /** - * Gets the color. - * - * @param key the key - * - * @return the color - */ - public synchronized Color getColor(String key) { - Color color = colorPrefs.get(key); - - if (color == null) { - System.err.println("Fatal: No such color config value \"" - + key + "\""); - System.exit(1); - } - - return color; - } - - /** - * Gets the color key set. - * - * @return the color key set - */ - public synchronized Set<String> getColorKeySet() { - return colorPrefs.keySet(); - } - - /** - * Inits the color. - * - * @param key the key - * @param color the color - */ - public synchronized void initColor(String key, Color color) { - if (!colorPrefs.containsKey(key)) - colorPrefs.put(key, color); - } - - /** - * Inits the color. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initColor(String key, Color val, String descr) { - initColor(key, val); - initDescription(COLOR_PREFIX + key, descr); - } - - /** - * Sets the color. - * - * @param key the key - * @param color the color - */ - public synchronized void setColor(String key, Color color) { - colorPrefs.put(key, color); - } - - /* Float methods */ - - /** - * Gets the float. - * - * @param key the key - * - * @return the float - */ - public float getFloat(String key) { - return getFloatObj(key).floatValue(); - } - - /** - * Gets the float key set. - * - * @return the float key set - */ - public synchronized Set<String> getFloatKeySet() { - return floatPrefs.keySet(); - } - - /** - * Gets the float obj. - * - * @param key the key - * - * @return the float obj - */ - public synchronized Float getFloatObj(String key) { - Float val = floatPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such float config value \"" - + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Inits the float. - * - * @param key the key - * @param val the val - */ - public synchronized void initFloat(String key, Float val) { - if (!floatPrefs.containsKey(key)) - floatPrefs.put(key, val); - } - - /** - * Inits the float. - * - * @param key the key - * @param val the val - */ - public void initFloat(String key, float val) { - initFloat(key, Float.valueOf(val)); - } - - /** - * Inits the float. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initFloat(String key, float val, String descr) { - initFloat(key, val); - initDescription(FLOAT_PREFIX + key, descr); - } - - /** - * Inits the float plus unit. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param unit the unit - */ - public void initFloat(String key, float val, String descr, String unit) { - initFloat(key, val, descr); - initUnit(FLOAT_PREFIX + key, unit); - } - - /** - * Sets the float. - * - * @param key the key - * @param val the val - */ - public synchronized void setFloat(String key, Float val) { - floatPrefs.put(key, val); - } - - /** - * Sets the float. - * - * @param key the key - * @param val the val - */ - public void setFloat(String key, float val) { - setFloat(key, Float.valueOf(val)); - } - - /* Integer methods */ - - /** - * Gets the integer. - * - * @param key the key - * - * @return the integer - */ - public int getInteger(String key) { - return getIntegerObj(key).intValue(); - } - - /** - * Gets the integer key set. - * - * @return the integer key set - */ - public synchronized Set<String> getIntegerKeySet() { - return integerPrefs.keySet(); - } - - /** - * Gets the integer obj. - * - * @param key the key - * - * @return the integer obj - */ - public synchronized Integer getIntegerObj(String key) { - Integer val = integerPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such integer config value \"" + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - */ - public void initInteger(String key, int val) { - if (!integerPrefs.containsKey(key)) - setInteger(key, Integer.valueOf(val)); - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initInteger(String key, int val, String descr) { - initInteger(key, val); - initDescription(INTEGER_PREFIX + key, descr); - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param r the restriction - */ - public void initInteger(String key, int val, String descr, - VSPrefsRestriction.VSIntegerPrefsRestriction r) { - initInteger(key, val, descr); - initRestriction(INTEGER_PREFIX + key, r); - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param r the restriction - */ - public void initInteger(String key, int val, String descr, - VSPrefsRestriction.VSIntegerPrefsRestriction r, - String unit) { - initInteger(key, val, descr, r); - initUnit(INTEGER_PREFIX + key, unit); - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param minValue the min value - * @param maxValue the max value - */ - public void initInteger(String key, int val, String descr, int minValue, - int maxValue) { - initInteger(key, val, descr, - new VSPrefsRestriction.VSIntegerPrefsRestriction( - minValue, maxValue)); - } - - /** - * Inits the integer plus unit. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param minValue the min value - * @param maxValue the max value - * @param unit the unit - */ - public void initInteger(String key, int val, String descr, int minValue, - int maxValue, String unit) { - initInteger(key, val, descr, minValue, maxValue); - initUnit(INTEGER_PREFIX + key, unit); - } - - /** - * Sets the integer. - * - * @param key the key - * @param val the val - */ - public synchronized void setInteger(String key, Integer val) { - integerPrefs.put(key, val); - } - - /** - * Sets the integer. - * - * @param key the key - * @param val the val - */ - public void setInteger(String key, int val) { - setInteger(key, Integer.valueOf(val)); - } - - /* Integer vector methods */ - - /** - * Gets the integer key set. - * - * @return the integer key set - */ - public synchronized Set<String> getVectorKeySet() { - return vectorPrefs.keySet(); - } - - /** - * Gets the integer obj. - * - * @param key the key - * - * @return the integer obj - */ - public synchronized Vector<Integer> getVector(String key) { - Vector<Integer> val = vectorPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such integer config value \"" + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Inits the integer. - * - * @param key the key - * @param val the val - */ - public synchronized void initVector(String key, Vector<Integer> val) { - if (!vectorPrefs.containsKey(key)) - setVector(key, val); - } - - /** - * Inits the integer vector. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initVector(String key, Vector<Integer> val, String descr) { - initVector(key, val); - initDescription(VECTOR_PREFIX + key, descr); - } - - /** - * Inits the integer vector plus unit. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initVector(String key, Vector<Integer> val, String descr, - String unit) { - initVector(key, val, descr); - initUnit(VECTOR_PREFIX + key, unit); - } - - /** - * Sets the integer vector. - * - * @param key the key - * @param val the val - */ - public synchronized void setVector(String key, Vector<Integer> val) { - vectorPrefs.put(key, val); - } - - /* Long methods */ - - /** - * Gets the long. - * - * @param key the key - * - * @return the long - */ - public long getLong(String key) { - return getLongObj(key).longValue(); - } - - /** - * Gets the long key set. - * - * @return the long key set - */ - public synchronized Set<String> getLongKeySet() { - return longPrefs.keySet(); - } - - /** - * Gets the long obj. - * - * @param key the key - * - * @return the long obj - */ - public synchronized Long getLongObj(String key) { - Long val = longPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such long config value \"" + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Inits the long. - * - * @param key the key - * @param val the val - */ - public synchronized void initLong(String key, Long val) { - if (!longPrefs.containsKey(key)) - longPrefs.put(key, val); - } - - /** - * Sets the long if unset. - * - * @param key the key - * @param val the val - */ - public void initLong(String key, long val) { - initLong(key, Long.valueOf(val)); - } - - /** - * Inits the long. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initLong(String key, long val, String descr) { - initLong(key, val); - initDescription(LONG_PREFIX + key, descr); - } - - /** - * Inits the long unit. - * - * @param key the key - * @param val the val - * @param descr the descr - * @param unit the unit - */ - public void initLong(String key, long val, String descr, String unit) { - initLong(key, val, descr); - initUnit(LONG_PREFIX + key, unit); - } - - /** - * Deletes the long. - * - * @param key the key - */ - public synchronized void deleteLong(String key) { - longPrefs.remove(key); - } - - /** - * Sets the long. - * - * @param key the key - * @param val the val - */ - public synchronized void setLong(String key, Long val) { - longPrefs.put(key, val); - } - - /** - * Sets the long. - * - * @param key the key - * @param val the val - */ - public void setLong(String key, long val) { - setLong(key, Long.valueOf(val)); - } - - /* String methods */ - - /** - * Gets the string. - * - * @param key the key - * - * @return the string - */ - public synchronized String getString(String key) { - String val = stringPrefs.get(key); - - if (val == null) { - System.err.println("Fatal: No such string config value \"" + key + "\""); - System.exit(1); - } - - return val; - } - - /** - * Gets the string key set. - * - * @return the string key set - */ - public synchronized Set<String> getStringKeySet() { - return stringPrefs.keySet(); - } - - /** - * Inits the string. - * - * @param key the key - * @param val the val - */ - public synchronized void initString(String key, String val) { - //if (!stringPrefs.containsKey(key)) - stringPrefs.put(key, val); - } - - /** - * Inits the string. - * - * @param key the key - * @param val the val - * @param descr the descr - */ - public void initString(String key, String val, String descr) { - initString(key, val); - initDescription(STRING_PREFIX + key, descr); - } - - /** - * Sets the string. - * - * @param key the key - * @param val the val - */ - public synchronized void setString(String key, String val) { - stringPrefs.put(key, val); - } - - /* (non-Javadoc) - * @see serialize.VSSerializable#serialize(serialize.VSSerialize, - * java.io.ObjectOutputStream) - */ - protected synchronized void serialize_( - VSSerialize serialize, ObjectOutputStream objectOutputStream) - throws IOException { - /** For later backwards compatibility, to add more stuff */ - objectOutputStream.writeObject(Boolean.valueOf(false)); - - objectOutputStream.writeObject(booleanPrefs); - objectOutputStream.writeObject(colorPrefs); - objectOutputStream.writeObject(descriptionPrefs); - objectOutputStream.writeObject(floatPrefs); - objectOutputStream.writeObject(integerPrefs); - objectOutputStream.writeObject(longPrefs); - objectOutputStream.writeObject(stringPrefs); - objectOutputStream.writeObject(units); - objectOutputStream.writeObject(vectorPrefs); - objectOutputStream.writeObject(restrictions); - - /** For later backwards compatibility, to add more stuff */ - objectOutputStream.writeObject(Boolean.valueOf(false)); - } - - /* (non-Javadoc) - * @see serialize.VSSerializable#deserialize(serialize.VSSerialize, - * java.io.ObjectInputStream) - */ - @SuppressWarnings("unchecked") - protected synchronized void deserialize_(VSSerialize serialize, - ObjectInputStream objectInputStream) - throws IOException, ClassNotFoundException { - objectPrefs.clear(); - - /** For later backwards compatibility, to add more stuff */ - objectInputStream.readObject(); - - booleanPrefs = (HashMap<String,Boolean>) objectInputStream.readObject(); - colorPrefs = (HashMap<String,Color>) objectInputStream.readObject(); - descriptionPrefs = (HashMap<String,String>) objectInputStream.readObject(); - floatPrefs = (HashMap<String,Float>) objectInputStream.readObject(); - integerPrefs = (HashMap<String,Integer>) objectInputStream.readObject(); - longPrefs = (HashMap<String,Long>) objectInputStream.readObject(); - stringPrefs = (HashMap<String,String>) objectInputStream.readObject(); - units = (HashMap<String,String>) objectInputStream.readObject(); - vectorPrefs = (HashMap<String,Vector<Integer>>) objectInputStream.readObject(); - restrictions = (HashMap<String,VSPrefsRestriction>) objectInputStream.readObject(); - - /** For later backwards compatibility, to add more stuff */ - objectInputStream.readObject(); - } - - /** - * Copies integers into another VSPrefs object. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyIntegers(VSPrefs copyInto, String[] keys) { - for (String key : keys) - copyInto.initInteger(key, - getInteger(key), - getDescription(INTEGER_PREFIX + key), - (VSPrefsRestriction.VSIntegerPrefsRestriction) - getRestriction(INTEGER_PREFIX + key), - getUnit(INTEGER_PREFIX + key)); - } - - /** - * Copies longs into another VSPrefs object. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyLongs(VSPrefs copyInto, String[] keys) { - for (String key : keys) - copyInto.initLong(key, getLong(key), - getDescription(LONG_PREFIX + key), - getUnit(LONG_PREFIX + key)); - } - - /** - * Copies floats into another VSPrefs object. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyFloats(VSPrefs copyInto, String[] keys) { - for (String key : keys) - copyInto.initFloat(key, getFloat(key), - getDescription(FLOAT_PREFIX + key), - getUnit(FLOAT_PREFIX + key)); - } - - /** - * Copies strings into another VSPrefs object. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyStrings(VSPrefs copyInto, String[] keys) { - for (String key : keys) - copyInto.initString(key, getString(key), - getDescription(STRING_PREFIX + key)); - } - - /** - * Copies color references into another VSPrefs object. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyColors(VSPrefs copyInto, String[] keys) { - for (String key : keys) { - Color color = getColor(key); - float comp[] = color.getComponents(null); - copyInto.initColor(key, new Color(comp[0], comp[1], comp[2]), - getDescription(COLOR_PREFIX + key)); - } - } - - /** - * Copies colors. - * - * @param copyInto the copy into - * @param keys the keys - */ - public void copyBooleans(VSPrefs copyInto, String[] keys) { - for (String key : keys) - copyInto.initBoolean(key, getBoolean(key), - getDescription(BOOLEAN_PREFIX + key)); - } - - /* (non-Javadoc) - * @see java.lang.Object#toString() - */ - public String toString() { - String descr = ""; - - Set<String> set = null; - - set = getIntegerKeySet(); - if (set.size() > 0) { - descr += INTEGER_PREFIX; - for (String key : set) - descr += key + "=" + getInteger(key) + "; "; - } - - set = getVectorKeySet(); - if (set.size() > 0) { - descr += VECTOR_PREFIX; - for (String key : set) - descr += key + "=" + getVector(key) + "; "; - } - - set = getLongKeySet(); - if (set.size() > 0) { - descr += LONG_PREFIX; - for (String key : set) - descr += key + "=" + getLong(key) + "; "; - } - - set = getFloatKeySet(); - if (set.size() > 0) { - descr += FLOAT_PREFIX; - for (String key : set) - descr += key + "=" + getFloat(key) + "; "; - } - - set = getBooleanKeySet(); - if (set.size() > 0) { - descr += BOOLEAN_PREFIX; - for (String key : set) - descr += key + "=" + getBoolean(key) + "; "; - } - - set = getStringKeySet(); - if (set.size() > 0) { - descr += STRING_PREFIX; - for (String key : set) - descr += key + "=" + getString(key) + "; "; - } - - if (descr.endsWith("; ")) - return descr.substring(0, descr.length() - 2); - - return descr; - } - - /** - * Gets the iD. - * - * @return the iD - */ - public int getID() { - return id; - } - - /** - * Checks if the prefs are empty. - * - * @return true, if empty - */ - public boolean isEmpty() { - if (!colorPrefs.isEmpty()) - return false; - - if (!floatPrefs.isEmpty()) - return false; - - if (!integerPrefs.isEmpty()) - return false; - - if (!vectorPrefs.isEmpty()) - return false; - - if (!longPrefs.isEmpty()) - return false; - - if (!stringPrefs.isEmpty()) - return false; - - if (!booleanPrefs.isEmpty()) - return false; - - return true; - } - - /** - * Returns all full keys. - * - * @return All full keys - */ - public ArrayList<String> getAllFullKeys() { - ArrayList<String> allKeys = new ArrayList<String>(); - - Set<String> set = null; - - set = getIntegerKeySet(); - for (String key : set) - allKeys.add(INTEGER_PREFIX + key); - - set = getVectorKeySet(); - for (String key : set) - allKeys.add(VECTOR_PREFIX + key); - - set = getLongKeySet(); - for (String key : set) - allKeys.add(LONG_PREFIX + key); - - set = getFloatKeySet(); - for (String key : set) - allKeys.add(FLOAT_PREFIX + key); - - set = getBooleanKeySet(); - for (String key : set) - allKeys.add(BOOLEAN_PREFIX + key); - - set = getStringKeySet(); - for (String key : set) - allKeys.add(STRING_PREFIX + key); - - Collections.sort(allKeys); - - return allKeys; - } -} |
