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

de.digitalcollections.model.text.contentblock.Image Maven / Gradle / Ivy

package de.digitalcollections.model.text.contentblock;

/** An image with attributes. */
public class Image extends ContentBlockWithAttributes {

  public Image() {}

  public Image(
      String alignment,
      String altText,
      String caption,
      boolean linkNewTab,
      String linkUrl,
      String resourceId,
      String title,
      String url,
      String width) {
    super();
    addAttribute("alignment", alignment);
    addAttribute("altText", altText);
    addAttribute("caption", caption);
    addAttribute("linkNewTab", linkNewTab);
    addAttribute("linkUrl", linkUrl);
    addAttribute("resourceId", resourceId);
    addAttribute("title", title);
    addAttribute("url", url);
    addAttribute("width", width);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy