Package org.jdesktop.swingx.search

Examples of org.jdesktop.swingx.search.RecentSearches


    this.recentSearchesSaveKey = recentSearchesSaveKey;

    if (recentSearches != null) {
      // set null before uninstalling. otherwise the popup menu is not
      // allowed to be changed.
      RecentSearches rs = recentSearches;
      recentSearches = null;
      rs.uninstall(this);
    }

    if (isValidRecentSearchesKey(recentSearchesSaveKey)) {
      recentSearches = new RecentSearches(recentSearchesSaveKey);
      recentSearches.install(this);
    }

    firePropertyChange("recentSearchesSaveKey", oldName, this.recentSearchesSaveKey);
  }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.search.RecentSearches

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.