Package com.storedobject.vaadin
Class Clock
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.littemplate.LitTemplate
com.storedobject.helper.LitComponent
com.storedobject.vaadin.Clock
- All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier
,com.vaadin.flow.component.DetachNotifier
,com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasStyle
,com.vaadin.flow.internal.Template
,Serializable
@Tag("so-clock")
@JsModule("./so/clock/so-clock.js")
public class Clock
extends LitComponent
implements com.vaadin.flow.component.HasStyle
A simple clock. By default, it will display the UTC time in 24-hours format with its date-part.
- Author:
- Syam
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.storedobject.helper.LitComponent
executeJS, onDetach
Methods inherited from class com.vaadin.flow.component.littemplate.LitTemplate
getChildren
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
Clock
public Clock()Constructor.
-
-
Method Details
-
setUTC
public void setUTC(boolean utc) Set the UTC mode.- Parameters:
utc
- Whether to show the time in UTC or not.
-
showUTC
public void showUTC(boolean showUTC) Whether to display "UTC" string or not. Applicable only when the UTC mode is active.- Parameters:
showUTC
- True/false.
-
setAMPM
public void setAMPM(boolean ampm) Set AM/PM mode.- Parameters:
ampm
- True/false.
-
showDate
public void showDate(boolean showDate) Whether to display date-part or not.- Parameters:
showDate
- True/false.
-