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

com.github.pwittchen.kirai.library.HtmlPiece Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.github.pwittchen.kirai.library;

public final class HtmlPiece extends Piece {
  private HtmlPiece(String key, Object value) {
    super(key, value, new HtmlSyntax());
  }

  public static Piece put(String key, Object value) {
    return new HtmlPiece(key, value);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy