Interface UriContentResolverFactory
- All Superinterfaces:
Dependent, Function<LinkResolverBasicContext, UriContentResolver>
- All Known Implementing Classes:
FileUriContentResolver.Factory
public interface UriContentResolverFactory
extends Function<LinkResolverBasicContext, UriContentResolver>, Dependent
-
Method Summary
Modifier and TypeMethodDescriptionboolean@NotNull UriContentResolverapply(@NotNull LinkResolverBasicContext context)
-
Method Details
-
getAfterDependents
- Specified by:
getAfterDependentsin interfaceDependent- Returns:
- null or a list of dependents that must be executed before calling this one if any of the blocks in the list affect global state then these will be run on ALL blocks of the document before this preprocessor is called.
-
getBeforeDependents
- Specified by:
getBeforeDependentsin interfaceDependent- Returns:
- null or a list of dependents that must be executed after calling this one if any of the blocks in the list affect global state then these will be run on ALL blocks of the document before this preprocessor is called.
-
affectsGlobalScope
boolean affectsGlobalScope()- Specified by:
affectsGlobalScopein interfaceDependent- Returns:
- true if this dependent affects the global scope, which means that any that depend on it have to be run after this dependent has run against all elements. Otherwise, the dependent can run on an element after its dependents have processed an element. parsed.
-
apply
- Specified by:
applyin interfaceFunction<LinkResolverBasicContext, UriContentResolver>
-