All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.wcfart.wcf.table.TableModelChangeSupport Maven / Gradle / Ivy

/*
 * ====================================================================
 * This software is subject to the terms of the Common Public License
 * Agreement, available at the following URL:
 *   http://www.opensource.org/licenses/cpl.html .
 * Copyright (C) 2003-2004 TONBELLER AG.
 * All Rights Reserved.
 * You must accept the terms of that agreement to use this software.
 * ====================================================================
 *
 * 
 */
package net.sf.wcfart.wcf.table;

import java.util.ArrayList;
import java.util.List;

/**
 * @author av
 */
public class TableModelChangeSupport {
  ArrayList listeners = new ArrayList<>();
  TableModel source;

  public TableModelChangeSupport(TableModel source) {
    this.source = source;
  }

  public void fireModelChanged(boolean identityChanged) {
    if (listeners.size() > 0) {
      TableModelChangeEvent event = new TableModelChangeEvent(source, identityChanged);
      List copy = new ArrayList<>(listeners);
      for (TableModelChangeListener listener : copy) {
		  listener.tableModelChanged(event);
	  }
    }
  }

  public void addTableModelChangeListener(TableModelChangeListener l) {
    listeners.add(l);
  }

  public void removeTableModelChangeListener(TableModelChangeListener l) {
    listeners.remove(l);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy