org.evento.parser.model.payload.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evento-parser Show documentation
Show all versions of evento-parser Show documentation
Codebase Parser to detect RECQ Components for Evento Framework
package org.evento.parser.model.payload;
/**
* The Event class represents an event payload.
* It extends the Payload class and inherits its properties and methods.
*/
public class Event extends Payload {
/**
* Constructs a new Event object with the specified name.
*
* @param name the name of the event
*/
public Event(String name) {
super(name);
}
/**
* Constructs a new Event object.
*
* @see Payload#Payload()
*/
public Event() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy