Class TimeZoneChangeEvent
- java.lang.Object
-
- com.inductiveautomation.ignition.designer.event.TimeZoneChangeEvent
-
public class TimeZoneChangeEvent extends java.lang.Object
AnEventBus
Event for publishing time zone changes within the designer. TheTimeZoneChangeEvent.Listener
should register (and unregister) to the Designer's EventBus throughCommonContext.getEventBus()
'sregister
andunregister
methods.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
TimeZoneChangeEvent.Listener
Listens forTimeZoneChangeEvent
on theCommonContext.getEventBus()
by registration.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DESIGNER_TIMEZONE_ID
static java.lang.String
GATEWAY_TIMEZONE_ID
java.lang.String
timeZoneId
static java.lang.String
UNSET_TIMEZONE_ID
-
Constructor Summary
Constructors Constructor Description TimeZoneChangeEvent(java.lang.String timeZoneId)
-
-
-
Field Detail
-
UNSET_TIMEZONE_ID
public static final java.lang.String UNSET_TIMEZONE_ID
-
DESIGNER_TIMEZONE_ID
public static final java.lang.String DESIGNER_TIMEZONE_ID
- See Also:
- Constant Field Values
-
GATEWAY_TIMEZONE_ID
public static final java.lang.String GATEWAY_TIMEZONE_ID
- See Also:
- Constant Field Values
-
timeZoneId
@Nullable public final java.lang.String timeZoneId
-
-