All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evento.parser.model.component.Projector Maven / Gradle / Ivy

The newest version!
package com.evento.parser.model.component;

import com.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 - 2024 Weber Informatics LLC | Privacy Policy