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

io.mateu.dtos.Element Maven / Gradle / Ivy

The newest version!
package io.mateu.dtos;

import java.util.Collections;
import java.util.Map;

/** Metadata for a html element */
public record Element(String name, Map attributes, String content)
    implements ComponentMetadata {

  public Element {
    attributes = attributes != null ? Collections.unmodifiableMap(attributes) : Map.of();
  }

  @Override
  public Map attributes() {
    return Collections.unmodifiableMap(attributes);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy