Interface FacetLoaderConfig

All Known Implementing Classes:
CustomFacetsLoaderConfig, DefaultFacetLoaderConfig

public interface FacetLoaderConfig
Configuration interface for FacetLoader implementations.
  • Method Summary

    Modifier and Type
    Method
    Description
    Class<? extends FacetLoader<?>>
    getLoader(org.dom4j.Element element)
     
    boolean
    supports(org.dom4j.Element element)
    Checks whether the config contains a loader that supports the given element.
  • Method Details

    • supports

      boolean supports(org.dom4j.Element element)
      Checks whether the config contains a loader that supports the given element.
      Parameters:
      element - element to check
      Returns:
      true if the config contains suitable loader, false otherwise
    • getLoader

      Class<? extends FacetLoader<?>> getLoader(org.dom4j.Element element)
      Parameters:
      element - element to load
      Returns:
      FacetLoader instance for loading the given element