001/*
002 * JGrapes Event Driven Framework
003 * Copyright (C) 2017-2018 Michael N. Lipp
004 * 
005 * This program is free software; you can redistribute it and/or modify it 
006 * under the terms of the GNU Affero General Public License as published by 
007 * the Free Software Foundation; either version 3 of the License, or 
008 * (at your option) any later version.
009 * 
010 * This program is distributed in the hope that it will be useful, but 
011 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
012 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License 
013 * for more details.
014 * 
015 * You should have received a copy of the GNU Affero General Public License along 
016 * with this program; if not, see <http://www.gnu.org/licenses/>.
017 */
018
019package org.jgrapes.webconsole.base.events;
020
021import java.util.Set;
022import org.jgrapes.core.Event;
023import org.jgrapes.webconsole.base.Conlet.RenderMode;
024import org.jgrapes.webconsole.base.RenderSupport;
025
026/**
027 * The base class for events that result in a web console component 
028 * being rendered.
029 */
030public abstract class RenderConletRequestBase<T> extends Event<T> {
031    private final RenderSupport renderSupport;
032    private final Set<RenderMode> renderAs;
033
034    /**
035     * Creates a new event.
036     *
037     * @param renderSupport the render support
038     * @param renderAs the render modes
039     */
040    public RenderConletRequestBase(
041            RenderSupport renderSupport, Set<RenderMode> renderAs) {
042        this.renderSupport = renderSupport;
043        this.renderAs = renderAs;
044    }
045
046    /**
047     * Returns the render support.
048     * 
049     * @return the render support
050     */
051    public RenderSupport renderSupport() {
052        return renderSupport;
053    }
054
055    /**
056     * Returns the render modes.
057     * 
058     * @return the render modes
059     */
060    public Set<RenderMode> renderAs() {
061        return renderAs;
062    }
063
064}