Uses of Interface
org.jhotdraw8.css.function.CssFunction
Packages that use CssFunction
Package
Description
Provides an API for CSS functions and a number of implementations.
-
Uses of CssFunction in org.jhotdraw8.css.function
Classes in org.jhotdraw8.css.function that implement CssFunctionModifier and TypeClassDescriptionclassAbstract base class for CSS functions.classProvides protected methods for processing the following productions:classAbstract base class for CSS functions that process aCssTokenType.TT_STRING.classProcesses theattr()function.classProcesses thecalc()function.classProcesses the concat() function.classProcesses the replace() function.classProcesses theround()function.classProcesses the var() function.Method parameters in org.jhotdraw8.css.function with type arguments of type CssFunctionModifier and TypeMethodDescriptionvoidAttrCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidCalcCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidConcatCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) Processes the function.voidReplaceCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidRoundCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidVarCssFunction.process(T element, CssTokenizer tt, SelectorModel<T> model, CssFunctionProcessor<T> functionProcessor, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) -
Uses of CssFunction in org.jhotdraw8.css.manager
Methods in org.jhotdraw8.css.manager that return types with arguments of type CssFunctionMethod parameters in org.jhotdraw8.css.manager with type arguments of type CssFunctionModifier and TypeMethodDescriptionprotected voidSimpleCssFunctionProcessor.doProcessToken(T element, CssTokenizer tt, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidCssFunctionProcessor.process(T element, CssTokenizer tt, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) Processes all tokens.final voidSimpleCssFunctionProcessor.process(T element, CssTokenizer tt, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidCssFunctionProcessor.processToken(T element, CssTokenizer tt, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) Processes the next token(s).final voidSimpleCssFunctionProcessor.processToken(T element, CssTokenizer tt, Consumer<CssToken> out, Deque<CssFunction<T>> recursionStack) voidSimpleStylesheetsManager.setFunctions(List<CssFunction<E>> functions) Constructor parameters in org.jhotdraw8.css.manager with type arguments of type CssFunctionModifierConstructorDescriptionSimpleCssFunctionProcessor(List<CssFunction<T>> functions) SimpleCssFunctionProcessor(List<CssFunction<T>> functions, @Nullable SelectorModel<T> model, @Nullable Map<String, @Nullable ImmutableList<CssToken>> customProperties) SimpleStylesheetsManager(SelectorModel<E> selectorModel, List<CssFunction<E>> functions)