com.vaadin.base.devserver.
Class DevModeHandlerManagerImpl
- java.lang.Object
-
- com.vaadin.base.devserver.DevModeHandlerManagerImpl
-
All Implemented Interfaces:
public class DevModeHandlerManagerImpl extends Object implements DevModeHandlerManager
Provides API to access to the
DevModeHandler
instance.For internal use only. May be renamed or removed in a future release.
Since:
Author:
Vaadin Ltd
-
-
Constructor Summary
Constructors Constructor Description DevModeHandlerManagerImpl()
-
Method Summary
All Methods Modifier and Type Method Description DevModeHandler
getDevModeHandler()
Returns a
DevModeHandler
instance for the givenservice
.Class<?>[]
getHandlesTypes()
The annotations the dev mode handler is interested in having scanned from the class path.
void
initDevModeHandler(Set<Class<?>> classes, VaadinContext context)
Starts up a new
DevModeHandler
.static boolean
isDevModeAlreadyStarted(VaadinContext context)
Shows whether
DevModeHandler
has been already started or not.void
setDevModeHandler(DevModeHandler devModeHandler)
Defines the handler to use with this manager.
-
-
-
Method Detail
-
getHandlesTypes
public Class<?>[] getHandlesTypes()
Description copied from interface:
DevModeHandlerManager
The annotations the dev mode handler is interested in having scanned from the class path.
Specified by:
getHandlesTypes
in interfaceDevModeHandlerManager
Returns:
an array of types the dev mode handler is interested in
-
setDevModeHandler
public void setDevModeHandler(DevModeHandler devModeHandler)
Description copied from interface:
DevModeHandlerManager
Defines the handler to use with this manager.
Specified by:
setDevModeHandler
in interfaceDevModeHandlerManager
Parameters:
devModeHandler
- the dev mode handler to use
-
getDevModeHandler
public DevModeHandler getDevModeHandler()
Description copied from interface:
DevModeHandlerManager
Returns a
DevModeHandler
instance for the givenservice
.Specified by:
getDevModeHandler
in interfaceDevModeHandlerManager
Returns:
a
DevModeHandler
instance
-
initDevModeHandler
public void initDevModeHandler(Set<Class<?>> classes, VaadinContext context) throws VaadinInitializerException
Description copied from interface:
DevModeHandlerManager
Starts up a new
DevModeHandler
.Specified by:
initDevModeHandler
in interfaceDevModeHandlerManager
Parameters:
classes
- classes to check for npm- and js modulescontext
- servlet context we are running inThrows:
VaadinInitializerException
- if dev mode can't be initialized
-
isDevModeAlreadyStarted
public static boolean isDevModeAlreadyStarted(VaadinContext context)
Shows whether
DevModeHandler
has been already started or not.Parameters:
context
- TheVaadinContext
, notnull
Returns:
true
ifDevModeHandler
has already been started,false
- otherwise
-
-