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

br.com.objectos.ui.html.MetaProto Maven / Gradle / Ivy

The newest version!
package br.com.objectos.ui.html;

import javax.annotation.Generated;

@Generated("br.com.objectos.ui.html.ProtoSpecProcessor")
@TagName("meta")
abstract class MetaProto extends HtmlElement {
  public MetaProto() {
    super("meta", ContentModel.VOID);
  }

  public E name(String name) {
    attr("name", name);
    return self();
  }

  public E httpequiv(String httpequiv) {
    attr("http-equiv", httpequiv);
    return self();
  }

  public E content(String content) {
    attr("content", content);
    return self();
  }

  public E charset(String charset) {
    attr("charset", charset);
    return self();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy