package envoy.client.event; import envoy.event.Event; /** * Project: envoy-client
* File: ThemeChangeEvent.java
* Created: 15 Dec 2019
* * @author Kai S. K. Engelbart * @since Envoy Client v0.2-alpha */ public final class ThemeChangeEvent extends Event { private static final long serialVersionUID = 0L; /** * Initializes a {@link ThemeChangeEvent} conveying information about the change * of the theme currently in use. * * @param theme the name of the new theme * @since Envoy Client v0.2-alpha */ public ThemeChangeEvent(String theme) { super(theme); } }