Package org.rssowl.core.model.internal.preferences

Examples of org.rssowl.core.model.internal.preferences.Preference


  public Long getLong(String key) throws PersistenceException {
    return (Long) getValues(key);
  }

  public boolean delete(String key) throws PersistenceException {
    Preference pref = findPreference(key);
    if (pref == null)
      return false;
   
    Object value = getValues(pref);
    fDb.delete(pref);
View Full Code Here

TOP

Related Classes of org.rssowl.core.model.internal.preferences.Preference

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.