Example usage for javax.swing AbstractListModel subclass-usage

List of usage examples for javax.swing AbstractListModel subclass-usage

Introduction

In this page you can find the example usage for javax.swing AbstractListModel subclass-usage.

Usage

From source file org.springframework.richclient.list.AbstractFilteredListModel.java

/**
 * @author Keith Donald
 */
public abstract class AbstractFilteredListModel extends AbstractListModel implements ListDataListener {
    protected final Log logger = LogFactory.getLog(getClass());

From source file com.sshtools.common.mru.MRUListModel.java

/**
 *
 *
 * @author $author$
 * @version $Revision: 1.1.1.1 $
 */

From source file com.github.fritaly.dualcommander.SortedListModel.java

public final class SortedListModel<E> extends AbstractListModel<E> {

    private static final long serialVersionUID = 4813672030693748114L;

    private final SortedSet<E> model;

From source file com.mgmtp.jfunk.core.ui.PropertiesComboBoxModel.java

/**
 * Model class for the properties selector list.
 * 
 */
public class PropertiesComboBoxModel extends AbstractListModel implements ComboBoxModel {

From source file pcgen.gui2.util.SortedListModel.java

/**
 *
 * @author Connor Petty <cpmeister@users.sourceforge.net>
 */
public class SortedListModel<E> extends AbstractListModel implements ListListener<E> {

From source file uk.nhs.cfh.dsp.yasb.searchpanel.model.SearchResultsListModel.java

/**
 * A custom {@link javax.swing.ListModel} that handles results returned as {@link org.apache.lucene.document.Document}s.
 * The execution and population of the model are carried out by {@link uk.nhs.cfh.dsp.yasb.searchpanel.actions.PopulateListModelTask}
 * 
 * <br> Written by @author jay
 * <br> Created on Dec 23, 2008 at 4:14:41 PM

From source file org.nuclos.client.ui.model.SortedListModel.java

/**
 * <code>ListModel</code> that is always sorted.
 * <br>
 * <br>Created by Novabit Informationssysteme GmbH
 * <br>Please visit <a href="http://www.novabit.de">www.novabit.de</a>
 *

From source file JBenchFrame.java

class ListData extends AbstractListModel {
    String[] strings = new String[10000];

    public ListData() {
        for (int i = 0; i < 10000; i++) {
            strings[i] = "bob" + i;

From source file be.ac.ua.comp.scarletnebula.gui.ServerListModel.java

public class ServerListModel extends AbstractListModel {
    public static enum CreateNewServerServer {
        DISPLAY_NEW_SERVER, NO_NEW_SERVER
    };

    private static final long serialVersionUID = 1L;

From source file userinterface.graph.SeriesSettingsList.java

/**
 * Representation of an axis of a Graph.
 * The settings are propagated to the JFreeChart library.
 */
@SuppressWarnings("serial")
public class SeriesSettingsList extends AbstractListModel implements Observer {