package envoy.client.event; import envoy.client.data.LocalDB; import envoy.client.ui.controller.ChatScene; import envoy.event.Event; /** * This event carries an instance of {@link LocalDB} so the groupCreationTab has the most recent version of the contactList.
* It is triggered as soon as the corresponding button in {@link ChatScene} is clicked.

* * Project: client
* File: LoadGroupCreationEvent.java
* Created: 23.08.2020
* * @author Maximilian Käfer * @since Envoy Client v0.2-beta */ public class LoadGroupCreationEvent extends Event{ private static final long serialVersionUID = 0L; /** * @param value the localDB * @since Envoy Client v0.2-beta */ public LoadGroupCreationEvent(LocalDB value) { super(value); } }