play.rebel.RenderView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.rebel;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Map;
public class RenderView extends View {
public RenderView() {
}
public RenderView(@Nonnull String templateName) {
super(templateName);
}
public RenderView(@Nonnull String templateName, @Nonnull Map arguments) {
super(templateName, arguments);
}
@Override public RenderView with(@Nonnull String name, @Nullable Object value) {
return (RenderView) super.with(name, value);
}
}