Uses of Interface
com.vaadin.flow.di.Lookup
-
Packages that use Lookup Package Description com.vaadin.base.devserver com.vaadin.experimental com.vaadin.flow.di com.vaadin.flow.function com.vaadin.flow.server.frontend -
-
Uses of Lookup in com.vaadin.base.devserver
Constructors in com.vaadin.base.devserver with parameters of type Lookup Constructor Description AbstractDevServerRunner(Lookup lookup, int runningPort, File npmFolder, CompletableFuture<Void> waitFor)
Craete an instance that waits for the given task to complete before starting or connecting to the server.ViteHandler(Lookup lookup, int runningPort, File npmFolder, CompletableFuture<Void> waitFor)
Creates and starts the dev mode handler if none has been started yet.WebpackHandler(Lookup lookup, int runningPort, File npmFolder, CompletableFuture<Void> waitFor)
Creates and starts the dev mode handler if none has been started yet. -
Uses of Lookup in com.vaadin.experimental
Constructors in com.vaadin.experimental with parameters of type Lookup Constructor Description FeatureFlags(Lookup lookup)
Generate FeatureFlags with given lookup data. -
Uses of Lookup in com.vaadin.flow.di
Classes in com.vaadin.flow.di that implement Lookup Modifier and Type Class Description protected static class
LookupInitializer.LookupImpl
Default implementation ofLookup
.Methods in com.vaadin.flow.di that return Lookup Modifier and Type Method Description static Lookup
Lookup. compose(Lookup lookup1, Lookup lookup2)
Make a composite lookup which contains the services from bothlookup1
andlookup2
.protected Lookup
LookupInitializer. createLookup(VaadinContext context, Map<Class<?>,Collection<Class<?>>> services)
Creates a lookup based on providedservices
.static <T> Lookup
Lookup. of(T service, Class<? super T>... serviceTypes)
Creates a lookup which contains (only) the providedservice
as instance of givenserviceTypes
.Methods in com.vaadin.flow.di with parameters of type Lookup Modifier and Type Method Description static Lookup
Lookup. compose(Lookup lookup1, Lookup lookup2)
Make a composite lookup which contains the services from bothlookup1
andlookup2
. -
Uses of Lookup in com.vaadin.flow.function
Methods in com.vaadin.flow.function with parameters of type Lookup Modifier and Type Method Description void
VaadinApplicationInitializationBootstrap. bootstrap(Lookup lookup)
Bootstraps Vaadin application initialization. -
Uses of Lookup in com.vaadin.flow.server.frontend
Constructors in com.vaadin.flow.server.frontend with parameters of type Lookup Constructor Description Builder(Lookup lookup, File npmFolder, File generatedPath, File frontendDirectory, String buildDirectory)
Create a builder instance with all parameters.Builder(Lookup lookup, File npmFolder, File generatedPath, String buildDirectory)
Create a builder instance with custom npmFolder and generatedPathBuilder(Lookup lookup, File npmFolder, String buildDirectory)
Create a builder instance given an specific npm folder.
-