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

play.rebel.RenderView Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
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);
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy