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

com.google.sitebricks.rendering.control.TerminalWidgetChain Maven / Gradle / Ivy

package com.google.sitebricks.rendering.control;

import com.google.sitebricks.Renderable;
import com.google.sitebricks.Respond;
import net.jcip.annotations.NotThreadSafe;

import java.util.Collections;
import java.util.Set;

/**
 * 

* * Marker represents the end of a widget chain/branch *

* * @author Dhanji R. Prasanna ([email protected]) */ @NotThreadSafe class TerminalWidgetChain implements WidgetChain { public void render(Object bound, Respond respond) { } public Set collect(Class clazz) { return Collections.emptySet(); } public WidgetChain addWidget(Renderable renderable) { return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy