Uses of Class
org.jhotdraw8.css.ast.Stylesheet
Packages that use Stylesheet
Package
Description
Provides a CSS parser that is compliant to CSS Syntax Module 3.
-
Uses of Stylesheet in org.jhotdraw8.css.manager
Methods in org.jhotdraw8.css.manager that return StylesheetModifier and TypeMethodDescription@Nullable StylesheetSimpleStylesheetsManager.StylesheetEntry.getStylesheet()StylesheetsManager.StylesheetInfo.getStylesheet()Methods in org.jhotdraw8.css.manager with parameters of type StylesheetModifier and TypeMethodDescriptionvoidSimpleStylesheetsManager.addStylesheet(javafx.css.StyleOrigin origin, Stylesheet stylesheet) voidStylesheetsManager.addStylesheet(javafx.css.StyleOrigin origin, Stylesheet stylesheet) Adds a stylesheet with the specified origin.booleanSimpleStylesheetsManager.applyStylesheetTo(javafx.css.StyleOrigin styleOrigin, Stylesheet s, E elem, boolean suppressParseException) booleanStylesheetsManager.applyStylesheetTo(javafx.css.StyleOrigin styleOrigin, Stylesheet s, E element, boolean suppressParseException) Applies the provided stylesheet.StylesheetsManager.getMatchingRulesForElement(Stylesheet s, E elem) default booleanStylesheetsManager.matchesElement(Stylesheet s, E elem) Returns true if the provided stylesheet has selectors which match the specified element.Constructors in org.jhotdraw8.css.manager with parameters of type StylesheetModifierConstructorDescriptionStylesheetEntry(javafx.css.StyleOrigin origin, Stylesheet stylesheet, Consumer3<Level, String, Throwable> logger) -
Uses of Stylesheet in org.jhotdraw8.css.parser
Methods in org.jhotdraw8.css.parser that return StylesheetModifier and TypeMethodDescriptionCssParser.parseStylesheet(Reader css, @Nullable URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified String and document home.CssParser.parseStylesheet(String css, @Nullable URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified String and document home.CssParser.parseStylesheet(URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified URI.CssParser.parseStylesheet(CssTokenizer tt, @Nullable URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified String and document home.