Package com.itextpdf.tool.xml.css
Interface CssFiles
-
- All Known Implementing Classes:
CssFilesImpl
public interface CssFiles
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(CssFile css)
Adds css to this CssFiles.void
clear()
java.util.Map<java.lang.String,java.lang.String>
getCSS(Tag t)
Looks for all CSS properties that affect the given tag.boolean
hasFiles()
Check for files with rules.
-
-
-
Method Detail
-
hasFiles
boolean hasFiles()
Check for files with rules.- Returns:
- true if there are files with rules in this CssFiles collector
-
getCSS
java.util.Map<java.lang.String,java.lang.String> getCSS(Tag t)
Looks for all CSS properties that affect the given tag.- Parameters:
t
- the tag to check for.- Returns:
- a map with property as key and the value as value of the property
-
add
void add(CssFile css)
Adds css to this CssFiles.- Parameters:
css
- the CssFile to add.
-
clear
void clear()
-
-