Package evo.search.io.service
Class EventService
- java.lang.Object
-
- evo.search.io.service.EventService
-
public class EventService extends Object
Event bus holding all the usedEvent
s.
-
-
Field Summary
Fields Modifier and Type Field Description static com.pploder.events.Event<List<Configuration>>
CONFIGS_CHANGED
Event to reload configurations to use in theMainForm
.static com.pploder.events.Event<String>
LOG
Event for when something should be appended to the big log.static com.pploder.events.Event<String>
LOG_LABEL
Event for when something should be written to the log label.static com.pploder.events.Event<Void>
OPEN_CHOOSER_FORM
Event for displaying the chooser form.static com.pploder.events.Event<List<Configuration>>
OPEN_CONFIG
Event to open theConfigurationDialog
.static com.pploder.events.Event<Iterable<DiscreteGene>>
REPAINT_CANVAS
Event to repaint theCanvas
upon.
-
Constructor Summary
Constructors Constructor Description EventService()
-
-
-
Field Detail
-
LOG_LABEL
public static final com.pploder.events.Event<String> LOG_LABEL
Event for when something should be written to the log label.
-
LOG
public static final com.pploder.events.Event<String> LOG
Event for when something should be appended to the big log. Useful when cumulative error messages are necessary.
-
REPAINT_CANVAS
public static final com.pploder.events.Event<Iterable<DiscreteGene>> REPAINT_CANVAS
Event to repaint theCanvas
upon.
-
OPEN_CONFIG
public static final com.pploder.events.Event<List<Configuration>> OPEN_CONFIG
Event to open theConfigurationDialog
.
-
CONFIGS_CHANGED
public static final com.pploder.events.Event<List<Configuration>> CONFIGS_CHANGED
Event to reload configurations to use in theMainForm
.
-
OPEN_CHOOSER_FORM
public static final com.pploder.events.Event<Void> OPEN_CHOOSER_FORM
Event for displaying the chooser form.
-
-