We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.di.
Class LookupInitializer.AppShellPredicateImpl
- java.lang.Object
-
- com.vaadin.flow.di.LookupInitializer.AppShellPredicateImpl
-
All Implemented Interfaces:
Enclosing class:
protected static class LookupInitializer.AppShellPredicateImpl extends Object implements AppShellPredicate
Default implementation of
AppShellPredicate
.Since:
Author:
Vaadin Ltd
-
-
Constructor Summary
Constructors Constructor Description AppShellPredicateImpl()
Creates a new instance.
-
Method Summary
All Methods Modifier and Type Method Description boolean
isShell​(Class<?> clz)
Checks whether the class is an
AppShellConfigurator
class inside the web application.
-
-
-
Method Detail
-
isShell
public boolean isShell​(Class<?> clz)
Description copied from interface:
AppShellPredicate
Checks whether the class is an
AppShellConfigurator
class inside the web application.Specified by:
isShell
in interfaceAppShellPredicate
Parameters:
clz
- the class to check , notnull
Returns:
true if the class extends
AppShellConfigurator
.
-
-