Interface FontResolver


public interface FontResolver
This interface is used to resolve absolute and relative font URIs.
  • Method Summary

    Modifier and Type Method Description
    javax.xml.transform.Source resolve​(java.lang.String href)
    Called to resolve an URI to a Source instance.
  • Method Details

    • resolve

      javax.xml.transform.Source resolve​(java.lang.String href)
      Called to resolve an URI to a Source instance. The base URI needed by the URIResolver's resolve() method is defined to be implicitly available in this case. If the URI cannot be resolved, null is returned and it is assumed that the FontResolver implementation already warned the user about the problem.
      Parameters:
      href - An href attribute, which may be relative or absolute.
      Returns:
      A Source object, or null if the href could not resolved.