SaveTableEvent.java

package edu.udel.cis.vsl.civl.gui.common;

import java.util.EventObject;

/**
 * The event that is fired when the a value in the {@link CIVL_Table} is
 * modified. It is used to tell the {@link GUI_revamp} to save the values in the
 * table in the current {@link RunConfigDataNode}.
 * 
 * @author noyes
 * 
 */
public class SaveTableEvent extends EventObject {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public SaveTableEvent(Object source) {
		super(source);
	}
}