Interface IViewStylesheetProvider

All Known Implementing Classes:
ImmutableViewStylesheetProvider

public interface IViewStylesheetProvider
Manages the stylesheets for JavaFX views.
Author:
Erik Zemčík
  • Method Summary

    Modifier and Type
    Method
    Description
    Provides the string URLs linking to the stylesheets assigned to the requested view.
  • Method Details

    • getStylesheetsByViewId

      List<String> getStylesheetsByViewId(String viewId)
      Provides the string URLs linking to the stylesheets assigned to the requested view. These stylesheets are usable by the content of the JavaFX scene. The view is identified by the viewId parameter.
      Parameters:
      viewId - identification of the view
      Returns:
      unmodifiable list of stylesheets
      Throws:
      IllegalArgumentException - if viewId is null or empty
      UnknownViewException - if the view is not known by the provider
      See Also:
      • Scene.getStylesheets()