Store recent items (e.g. recent file in a menu or recent search text in a search dialog) : Preference Properties « Development Class « Java






Store recent items (e.g. recent file in a menu or recent search text in a search dialog)

    
/*
 * jMemorize - Learning made easy (and fun) - A Leitner flashcards tool
 * Copyright(C) 2004-2006 Riad Djemili
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 1, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
import java.util.ArrayList;
import java.util.List;
import java.util.prefs.Preferences;

/**
 * A simple data structure to store recent items (e.g. recent file in a menu or
 * recent search text in a search dialog).
 * 
 * @author djemili
 */
public class RecentItems
{
    public interface RecentItemsObserver
    {
        void onRecentItemChange(RecentItems src);
    }
    
    public final static String RECENT_ITEM_STRING = "recent.item."; //$NON-NLS-1$
    
    private int                       m_maxItems;
    private Preferences               m_prefNode;

    private List<String>              m_items            = new ArrayList<String>();
    private List<RecentItemsObserver> m_observers        = new ArrayList<RecentItemsObserver>();
    
    public RecentItems(int maxItems, Preferences prefNode)
    {
        m_maxItems = maxItems;
        m_prefNode = prefNode;
        
        loadFromPreferences();
    }
    
    public void push(String item)
    {
        m_items.remove(item);
        m_items.add(0, item);
        
        if (m_items.size() > m_maxItems)
        {
            m_items.remove(m_items.size() - 1);
        }
        
        update();
    }
    
    public void remove(Object item)
    {
        m_items.remove(item);
        update();
    }
    
    public String get(int index)
    {
        return (String)m_items.get(index);
    }
    
    public List<String> getItems()
    {
        return m_items;
    }
    
    public int size()
    {
        return m_items.size();
    }
    
    public void addObserver(RecentItemsObserver observer)
    {
        m_observers.add(observer);
    }
    
    public void removeObserver(RecentItemsObserver observer)
    {
        m_observers.remove(observer);
    }
    
    private void update()
    {
        for (RecentItemsObserver observer : m_observers)
        {
            observer.onRecentItemChange(this);
        }
        
        storeToPreferences();
    }
    
    private void loadFromPreferences()
    {
        // load recent files from properties
        for (int i = 0; i < m_maxItems; i++)
        {
            String val = m_prefNode.get(RECENT_ITEM_STRING+i, ""); //$NON-NLS-1$

            if (!val.equals("")) //$NON-NLS-1$
            {
                m_items.add(val);
            }
            else
            {
                break;
            }
        }
    }
    
    private void storeToPreferences()
    {
        for (int i = 0; i < m_maxItems; i++)
        {
            if (i < m_items.size())
            {
                m_prefNode.put(RECENT_ITEM_STRING+i, (String)m_items.get(i));
            }
            else
            {
                m_prefNode.remove(RECENT_ITEM_STRING+i);
            }
        }
    }
}

   
    
    
    
  








Related examples in the same category

1.Put key value pair to PreferencePut key value pair to Preference
2.Get childrenNames from PreferencesGet childrenNames from Preferences
3.Get keys from PreferencesGet keys from Preferences
4.Get name and parent from PreferenceGet name and parent from Preference
5.Get node from PreferenceGet node from Preference
6.Get value from PreferencesGet value from Preferences
7.Export Preferences to XML fileExport Preferences to XML file
8.Passing references aroundPassing references around
9.Retrieve the preference node using a Class object and saves and retrieves a preference in the node.
10.Determining If a Preference Node Contains a Specific Key
11.Determining If a Preference Node Contains a Specific Value
12.Removing a Preference from a Preference Node
13.Getting and Setting Java Type Values in a Preference
14.Getting the Maximum Size of a Preference Key and Value
15.Getting the Roots of the Preference Trees
16.Retrieving a Preference Node
17.Removing a Preference Node
18.Determining If a Preference Node Exists
19.Retrieving the Parent and Child Nodes of a Preference Node
20.Exporting the Preferences in a Preference Node
21.Exporting the Preferences in a Subtree of Preference Nodes
22.Determining When a Preference Node Is Added or Removed
23.Read / write data in Windows registry
24.Listening for Changes to Preference Values in a Preference Node
25.Saving Data with the Preferences APISaving Data with the Preferences API
26.Preference Example:: export To FilePreference Example:: export To File
27.Properties load
28.Properties TreeMap and StreamProperties TreeMap and Stream
29.Parse Properties FilesParse Properties Files
30.Preferences DemoPreferences Demo
31.Properties TestProperties Test
32.Sort Properties when saving
33.Loading configuration parameters from text file based properties
34.To read a Properties file via an Applet
35.A Properties file stored in a JAR can be loaded this way
36.Load a properties file in the startup directory
37.Have a multi-line value in a properties file
38.Convert a Properties list into a map.
39.Listing All System Properties
40.Getting and Setting Properties
41.Use XML with Properties
42.Store properties as XML file
43.Reading and Writing a Properties File
44.Read system property as an integer
45.Read a configuration file using java.util.Properties
46.Load properties from XML file
47.Here is an example of the contents of a properties file:
48.Use the Registry to store informations (Preferences API)
49.Load a properties file in the classpath
50.Listing the system properties
51.Properties Demo
52.PropsToXML takes a standard Java properties file, and converts it into an XML file
53.Utility class for preferences
54.Static methods for retrieving and system properties and converting them to various types
55.Storing/loading Preferences
56.A frame that restores position and size from user preferences and updates the preferences upon exit
57.A frame that restores position and size from a properties file and updates the properties upon exitA frame that restores position and size from a properties file and updates the properties upon exit
58.A simple Properties extension easing the loading and saving of data