001package org.nasdanika.html.model.html.gen;
002
003import java.util.function.Consumer;
004
005import org.nasdanika.common.Context;
006
007/**
008 * Marker {@link Context} service interface which allows generators to contribute "reference" content. For example, a link may contribute a modal dialog which is triggered by that link. 
009 * @author Pavel
010 *
011 */
012public interface ContentConsumer extends Consumer<Object> {
013
014}