|
LiveGraph data visualisation and analysis framework |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GUIEvent>
org.LiveGraph.gui.GUIEvent
public enum GUIEvent
Enum Constant Summary | |
---|---|
GUI_DataFileSettingsDisplayStateChanged
Info parameter Value getInfoBoolean() true (showing) or false (hidden)
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
|
GUI_DataSeriesHighlighted
Info parameter Value getInfoBoolean() unspecified
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() a List<Integer> -object containing
series indices of highlighted series
|
|
GUI_DataSeriesSettingsDisplayStateChanged
Info parameter Value getInfoBoolean() true (showing) or false (hidden)
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
|
GUI_DisposeAll
Info parameter Value getInfoBoolean() unspecified
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
|
GUI_GraphSettingsDisplayStateChanged
Info parameter Value getInfoBoolean() true (showing) or false (hidden)
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
|
GUI_LogMessageError
This event is raised by the GUIManager in response to the invokation of
GUIManager.logErrorLn(Object) in order to notify all listeners who would
like to log messages. |
|
GUI_LogMessageInfo
This event is raised by the GUIManager in response to the invokation of
GUIManager.logInfoLn(Object) in order to notify all listeners who would
like to log messages. |
|
GUI_LogMessageSuccess
This event is raised by the GUIManager in response to the invokation of
GUIManager.logSuccessLn(Object) in order to notify all listeners who would
like to log messages. |
|
GUI_MessagesDisplayStateChanged
Info parameter Value getInfoBoolean() true (showing) or false (hidden)
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
|
GUI_PlotDisplayStateChanged
Info parameter Value getInfoBoolean() true (showing) or false (hidden)
getInfoLong() unspecified
getInfoDouble() unspecified
getInfoObject() unspecified
|
Method Summary | |
---|---|
static GUIEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GUIEvent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GUIEvent GUI_DataSeriesHighlighted
Info parameter | Value |
---|---|
getInfoBoolean() | unspecified |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | a List<Integer> -object containing
series indices of highlighted series |
public static final GUIEvent GUI_DataFileSettingsDisplayStateChanged
Info parameter | Value |
---|---|
getInfoBoolean() | true (showing) or false (hidden) |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
public static final GUIEvent GUI_GraphSettingsDisplayStateChanged
Info parameter | Value |
---|---|
getInfoBoolean() | true (showing) or false (hidden) |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
public static final GUIEvent GUI_DataSeriesSettingsDisplayStateChanged
Info parameter | Value |
---|---|
getInfoBoolean() | true (showing) or false (hidden) |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
public static final GUIEvent GUI_PlotDisplayStateChanged
Info parameter | Value |
---|---|
getInfoBoolean() | true (showing) or false (hidden) |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
public static final GUIEvent GUI_MessagesDisplayStateChanged
Info parameter | Value |
---|---|
getInfoBoolean() | true (showing) or false (hidden) |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
public static final GUIEvent GUI_LogMessageSuccess
GUIManager
in response to the invokation of
GUIManager.logSuccessLn(Object)
in order to notify all listeners who would
like to log messages.
Info parameter | Value |
---|---|
getInfoBoolean() | unspecified |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | The String to log |
public static final GUIEvent GUI_LogMessageError
GUIManager
in response to the invokation of
GUIManager.logErrorLn(Object)
in order to notify all listeners who would
like to log messages. It can be considered crucial that every error message does
eventually get logged. In oder to notify the GUIManager
that the error message
was actually logged or displayed, an EventListener
that successfully processed
an event of this type must attach an annotation to the event, with the
annotation info being an object of type Boolean
representing the value
true
. After the event has been processed by all listeners, GUIManager
will examine all annotations of the event. If it can find one or more annotations with
the info-object being a Boolean
that evaluates to true
, it will do
nothing. Otherwise it it assume that the error message was not diaplayed/logged. In
that case it will immediately display a modal dialog with the error message and also
write the message to System.err
.GUI_LogMessageSuccess
and
GUI_LogMessageInfo
events as it is assumed that they are less crucial and it
is up to the application whether they should be displayed.
Info parameter | Value |
---|---|
getInfoBoolean() | unspecified |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | The String to log |
public static final GUIEvent GUI_LogMessageInfo
GUIManager
in response to the invokation of
GUIManager.logInfoLn(Object)
in order to notify all listeners who would
like to log messages.
Info parameter | Value |
---|---|
getInfoBoolean() | unspecified |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | The String to log |
public static final GUIEvent GUI_DisposeAll
Info parameter | Value |
---|---|
getInfoBoolean() | unspecified |
getInfoLong() | unspecified |
getInfoDouble() | unspecified |
getInfoObject() | unspecified |
Method Detail |
---|
public static GUIEvent[] values()
for (GUIEvent c : GUIEvent.values()) System.out.println(c);
public static GUIEvent valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
LiveGraph data visualisation and analysis framework |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |