com.itextpdf.styledxmlparser.css.resolve.IStyleInheritance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of styled-xml-parser Show documentation
Show all versions of styled-xml-parser Show documentation
Styled XML parser is used by iText modules to parse HTML and XML
package com.itextpdf.styledxmlparser.css.resolve;
/**
* Interface for attribute and style-inheritance logic
*/
public interface IStyleInheritance {
/**
* Checks if a property or attribute is inheritable is inheritable.
*
* @param propertyIdentifier the identifier for property
* @return true, if the property is inheritable, false otherwise
*/
boolean isInheritable(String propertyIdentifier);
}