LiveGraph
data visualisation and analysis framework

Uses of Interface
org.LiveGraph.events.EventListener

Packages that use EventListener
org.LiveGraph.dataCache   
org.LiveGraph.events   
org.LiveGraph.gui   
org.LiveGraph.gui.dfs   
org.LiveGraph.gui.dss   
org.LiveGraph.gui.gs   
org.LiveGraph.gui.msg   
org.LiveGraph.gui.plot   
org.LiveGraph.plot   
 

Uses of EventListener in org.LiveGraph.dataCache
 

Classes in org.LiveGraph.dataCache that implement EventListener
 class DataStreamToCacheReader
          This reader will parse a data stream using DataStreamReader and store all information in a data cache for further processing by the application.

See DataStreamWriter for the details of the data file format.
 class UpdateInvoker
          An object of this class is used to triger updates from a data input stream into a DataCache at regular intervals.
 

Uses of EventListener in org.LiveGraph.events
 

Fields in org.LiveGraph.events declared as EventListener
private  EventListener EventAnnotation.listener
           
private  EventListener EventProcessingException.Cause.listener
           
 

Fields in org.LiveGraph.events with type parameters of type EventListener
private  java.util.List<EventListener> EventManager.listeners
           
 

Methods in org.LiveGraph.events that return EventListener
 EventListener EventProcessingException.Cause.getCausingListener()
           
 EventListener EventAnnotation.getListener()
           
 

Methods in org.LiveGraph.events that return types with arguments of type EventListener
 java.util.List<EventListener> EventManager.getInterestedListeners(Event<? extends EventType> event)
           
 

Methods in org.LiveGraph.events with parameters of type EventListener
 void Event.addAnnotation(EventListener listener, java.lang.Object annotationInfo)
           
 void EventProcessingException.addCause(Event<? extends EventType> event, EventListener listener, java.lang.Throwable exception)
           
 java.util.List<EventAnnotation> Event.getAnnotations(EventListener byListener)
           
 boolean EventManager.managesListener(EventListener listener)
           
 boolean EventManager.registerListener(EventListener listener)
           
 boolean EventManager.unregisterListener(EventListener listener)
           
 

Constructors in org.LiveGraph.events with parameters of type EventListener
EventAnnotation(EventListener listener, java.lang.Object info)
           
EventProcessingException.Cause(Event<? extends EventType> ev, EventListener li, java.lang.Throwable ex)
           
 

Uses of EventListener in org.LiveGraph.gui
 

Classes in org.LiveGraph.gui that implement EventListener
 class LiveGraphFrame
          This is the superclass for all LiveGraph frames (windows).
 class LiveGraphSettingsPanel
          This is the superclass for LiveGraph main settings panels that may be inserted directly into a window (or some other kind of GUI frame).This class executes event handling commonly shared between settings panels.
(package private)  class MainMenuBar
          Provides a LiveGraph application menu bar.
 

Uses of EventListener in org.LiveGraph.gui.dfs
 

Classes in org.LiveGraph.gui.dfs that implement EventListener
 class DataFileSettingsPanel
          The data file settings panel of the application.
 class DataFileSettingsWindow
          The "Data File Settings" window of the application.
 

Uses of EventListener in org.LiveGraph.gui.dss
 

Classes in org.LiveGraph.gui.dss that implement EventListener
 class SeriesSettingsPanel
          The data series settings panel of the application.
 class SeriesSettingsWindow
          The "Series Settings" window of the application.
 

Uses of EventListener in org.LiveGraph.gui.gs
 

Classes in org.LiveGraph.gui.gs that implement EventListener
 class GraphSettingsPanel
          The graph settings panel of the application.
 class GraphSettingsWindow
          The "Graph Settings" window of the application.
 

Uses of EventListener in org.LiveGraph.gui.msg
 

Classes in org.LiveGraph.gui.msg that implement EventListener
 class MessagePanel
          The message panel of the application.
 class MessageWindow
          This is the application's message window.
 

Uses of EventListener in org.LiveGraph.gui.plot
 

Classes in org.LiveGraph.gui.plot that implement EventListener
 class PlotPanel
          The plotter panel of the application.
 class PlotWindow
          The plot window of the application.
 

Uses of EventListener in org.LiveGraph.plot
 

Classes in org.LiveGraph.plot that implement EventListener
 class Plotter
          This class handles the conversion of the cached data to a screen image and the drawing of the image on a Graphics object.
 


LiveGraph
data visualisation and analysis framework