Uses of Class
tech.guilhermekaua.spigotboot.inventoryapi.config.ViewConfig
Packages that use ViewConfig
Package
Description
-
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.config
Methods in tech.guilhermekaua.spigotboot.inventoryapi.config that return ViewConfigModifier and TypeMethodDescription@NotNull ViewConfigViewConfigBuilder.build()Validates and freezes the configuration.@NotNull ViewConfigViewConfig.withOverrides(@Nullable String title, @Nullable Integer rows) Returns a copy of this config with the given non-null per-open overrides applied; this instance is unchanged. -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.context
Methods in tech.guilhermekaua.spigotboot.inventoryapi.context that return ViewConfigModifier and TypeMethodDescription@NotNull ViewConfigViewContext.config()Returns the effective configuration of this session, with per-open overrides recorded inonOpenalready applied. -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.internal.context
Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.context that return ViewConfig -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.internal.layout
Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.layout with parameters of type ViewConfigModifier and TypeMethodDescriptionstatic @NotNull ResolvedLayoutResolvedLayout.resolve(@NotNull ViewConfig config) Parses the layout rows of the given config; layout shape was already validated at build time. -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.internal.pagination
Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.pagination with parameters of type ViewConfigModifier and TypeMethodDescriptionvoidPaginationBinding.initialize(@NotNull ResolvedLayout viewLayout, @NotNull ViewConfig effectiveConfig) Builds the per-context runtime: resolves and validates the fill target, creates the per-context page source and the geometry engine, replays any pending navigation on the still-unbound paginator (the preserved 2.x record-only branch) and binds the engine to this host — which dispatches the initial page load. -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.internal.registry
Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.registry that return ViewConfigModifier and TypeMethodDescription@NotNull ViewConfigRegisteredView.config()Returns the frozen registration-time config; per-open overrides are merged onto a copy by the open phase, never onto this instance.Constructors in tech.guilhermekaua.spigotboot.inventoryapi.internal.registry with parameters of type ViewConfigModifierConstructorDescriptionRegisteredView(@NotNull Class<? extends View> type, @NotNull View instance, @NotNull ViewConfig config) Creates the registration record. -
Uses of ViewConfig in tech.guilhermekaua.spigotboot.inventoryapi.internal.session
Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.session that return ViewConfigModifier and TypeMethodDescription@NotNull ViewConfigViewSession.effectiveConfig()Returns the effective configuration of this session: the registered config until the open phase applies per-open overrides.Methods in tech.guilhermekaua.spigotboot.inventoryapi.internal.session with parameters of type ViewConfigModifier and TypeMethodDescriptionvoidViewSession.effectiveConfig(@NotNull ViewConfig c) Sets the effective configuration after per-open overrides were merged.