
com.adobe.epubcheck.ctc.css.CSSSelectorAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epubcheck Show documentation
Show all versions of epubcheck Show documentation
EPUBCheck is a tool to validate the conformance of EPUB publications against
the EPUB specifications. EPUBCheck can be run as a standalone command-line tool or used
as a Java library.
package com.adobe.epubcheck.ctc.css;
class CSSSelectorAttribute
{
private final String name;
private final String value;
private final boolean isImportant;
private final CSSSelector originatingSelector;
public CSSSelectorAttribute(String name, String value, boolean isImportant, CSSSelector originatingSelector)
{
this.name = name;
this.value = value;
this.isImportant = isImportant;
this.originatingSelector = originatingSelector;
}
public String getName()
{
return name;
}
public String getValue()
{
return value;
}
public boolean isImportant()
{
return isImportant;
}
public CSSSelector getOriginatingSelector()
{
return originatingSelector;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy