Package org.ribax.utils.model

Examples of org.ribax.utils.model.SearchableListModel


    if ((boolval = XMLutils.getElementBoolean("searchable",di)) != null) //$NON-NLS-1$
      searchable = boolval.booleanValue();
   
        // create a searchable or regular list data model
    if (searchable) {
      listModel = new SearchableListModel(this);
    } else {
      // create a DefaultListModel
      listModel = new DefaultListModel();
    }
   
View Full Code Here


     *
     * @see {link org.ribax.utils.model.SearchableListModel }
     */
    private void setSearchTerm() {
      if (listModel instanceof SearchableListModel) {
        SearchableListModel m = (SearchableListModel)listModel;
        m.setSearchTerm(searchfield.getText());
      }
    }
View Full Code Here

TOP

Related Classes of org.ribax.utils.model.SearchableListModel

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.