Uses of Interface
org.jgap.event.GeneticEventListener

Packages that use GeneticEventListener
com.anji.integration com.anji.integration contains classes that provide the glue between the various components of the system, including artificial neural net implementations, JGAP, NEAT, Log4J, and persistence and presentation layers. 
com.anji.run com.anji.run contains classes concerned with an evolutionary run. 
org.jgap.event   
 

Uses of GeneticEventListener in com.anji.integration
 

Classes in com.anji.integration that implement GeneticEventListener
 class ConsoleLogEventListener
          Writes log events to stdout.
 class LogEventListener
          Writes log events to log4j framework.
 class PersistenceEventListener
          Writes genetic algorithm data, including chromosomes and run, to persistent storage.
 class PresentationEventListener
          Stores presentation XML data where it can be displayed, likely in a web browser.
 

Uses of GeneticEventListener in com.anji.run
 

Classes in com.anji.run that implement GeneticEventListener
 class Run
          Hibernate-able run object.
 

Uses of GeneticEventListener in org.jgap.event
 

Methods in org.jgap.event with parameters of type GeneticEventListener
 void EventManager.addEventListener(java.lang.String a_eventName, GeneticEventListener a_eventListenerToAdd)
          Adds a new listener that will be notified when the event represented by the given name is fired.
 void EventManager.removeEventListener(java.lang.String a_eventName, GeneticEventListener a_eventListenerToRemove)
          Removes the given listener from subscription of the indicated event.