Package weka.gui.sql.event
Class HistoryChangedEvent
- java.lang.Object
-
- java.util.EventObject
-
- weka.gui.sql.event.HistoryChangedEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class HistoryChangedEvent extends java.util.EventObject
An event that is generated when a history is modified.- Version:
- $Revision: 7059 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
HistoryChangedListener
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HistoryChangedEvent(java.lang.Object source, java.lang.String name, javax.swing.DefaultListModel history)
constructs the event
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.DefaultListModel
getHistory()
returns the history modeljava.lang.String
getHistoryName()
returns the name of the historyjava.lang.String
toString()
returns the event in a string representation
-
-
-
Method Detail
-
getHistoryName
public java.lang.String getHistoryName()
returns the name of the history
-
getHistory
public javax.swing.DefaultListModel getHistory()
returns the history model
-
toString
public java.lang.String toString()
returns the event in a string representation- Overrides:
toString
in classjava.util.EventObject
- Returns:
- the event in a string representation
-
-