org.evento.parser.model.component.Projector 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.component;
import org.evento.parser.model.handler.EventHandler;
import java.util.List;
/**
* The {@code Projector} class represents a projector component.
* It extends the {@code Component} class and provides a list of event handlers.
*/
public class Projector extends Component {
private List eventHandlers;
/**
* Returns the list of event handlers associated with the Projector component.
*
* @return a List of EventHandler objects representing the event handlers.
*/
public List getEventHandlers() {
return eventHandlers;
}
/**
* Sets the event handlers for the Projector component.
*
* @param eventHandlers the List of EventHandler objects representing the event handlers
*/
public void setEventHandlers(List eventHandlers) {
this.eventHandlers = eventHandlers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy