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 TypeMethodDescriptionSimpleStylesheetsManager.StylesheetEntry.getStylesheet()StylesheetsManager.StylesheetInfo.getStylesheet()Methods in org.jhotdraw8.css.manager with parameters of type StylesheetModifier and TypeMethodDescriptionvoidSimpleStylesheetsManager.addStylesheet(@NonNull javafx.css.StyleOrigin origin, @NonNull Stylesheet stylesheet) voidStylesheetsManager.addStylesheet(@NonNull javafx.css.StyleOrigin origin, @NonNull Stylesheet stylesheet) Adds a stylesheet with the specified origin.booleanSimpleStylesheetsManager.applyStylesheetTo(@NonNull javafx.css.StyleOrigin styleOrigin, @NonNull Stylesheet s, @NonNull E elem, boolean suppressParseException) booleanStylesheetsManager.applyStylesheetTo(javafx.css.StyleOrigin styleOrigin, Stylesheet s, E element, boolean suppressParseException) Applies the provided stylesheet.StylesheetsManager.getMatchingRulesForElement(@NonNull Stylesheet s, E elem) default booleanStylesheetsManager.matchesElement(@NonNull 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(@NonNull javafx.css.StyleOrigin origin, @NonNull Stylesheet stylesheet, @NonNull Consumer3<Level, String, Throwable> logger) -
Uses of Stylesheet in org.jhotdraw8.css.parser
Methods in org.jhotdraw8.css.parser that return StylesheetModifier and TypeMethodDescriptionParses a given stylesheet from the specified String and document home.CssParser.parseStylesheet(@NonNull String css, @Nullable URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified String and document home.CssParser.parseStylesheet(@NonNull URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified URI.CssParser.parseStylesheet(@NonNull CssTokenizer tt, @Nullable URI stylesheetUri, @Nullable URI stylesheetHome) Parses a given stylesheet from the specified String and document home.