-
- All Known Implementing Classes:
MutableLoaderContext
public interface LoaderContextThe context providing all necessary components for loading an SVG document. The context returned bycreateDefault()can be used across multiple documents and threads.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceLoaderContext.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static @NotNull LoaderContext.Builderbuilder()static @NotNull LoaderContextcreateDefault()@NotNull CssParsercssParser()@NotNull DocumentLimitsdocumentLimits()@NotNull ElementLoaderelementLoader()@NotNull ResourcePolicyexternalResourcePolicy()@NotNull PaintParserpaintParser()@Nullable DomProcessorpreProcessor()@NotNull ResourceLoaderresourceLoader()
-
-
-
Method Detail
-
preProcessor
@Nullable @Nullable DomProcessor preProcessor()
-
cssParser
@NotNull @NotNull CssParser cssParser()
-
paintParser
@NotNull @NotNull PaintParser paintParser()
-
resourceLoader
@NotNull @NotNull ResourceLoader resourceLoader()
-
elementLoader
@NotNull @NotNull ElementLoader elementLoader()
-
externalResourcePolicy
@NotNull @NotNull ResourcePolicy externalResourcePolicy()
-
documentLimits
@NotNull @NotNull DocumentLimits documentLimits()
-
builder
@NotNull static @NotNull LoaderContext.Builder builder()
-
createDefault
@NotNull static @NotNull LoaderContext createDefault()
-
-