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

de.digitalcollections.prosemirror.model.api.Attributes Maven / Gradle / Ivy

The newest version!
package de.digitalcollections.prosemirror.model.api;

import java.util.Map;

public interface Attributes {

  Map getAttributes();

  void setAttributes(Map attributes);

  void addAttribute(String key, Object value);

  Object getAttribute(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy