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.templatemodel.
Interface TemplateModelProxyHandler.ModelProxy
-
All Superinterfaces:
All Known Implementing Classes:
Enclosing class:
protected static interface TemplateModelProxyHandler.ModelProxy extends Serializable
Gives access to the state node of a proxy instance.
-
-
Method Summary
All Methods Modifier and Type Method Description BeanModelType<?>
$modelType()
Gets the model type definition for this type.
void
$modelType(BeanModelType<?> type)
Sets the model type for this instance.
StateNode
$stateNode()
Gets the state node that this instance is backed by.
void
$stateNode(StateNode node)
Sets the state node that this instance is backed by.
-
-
-
Method Detail
-
$stateNode
StateNode $stateNode()
Gets the state node that this instance is backed by.
Returns:
the state node, not
null
-
$stateNode
void $stateNode(StateNode node)
Sets the state node that this instance is backed by.
Parameters:
node
- the state node, notnull
-
$modelType
BeanModelType<?> $modelType()
Gets the model type definition for this type.
Returns:
the model type, not
null
-
$modelType
void $modelType(BeanModelType<?> type)
Sets the model type for this instance.
Parameters:
type
- the model type, notnull
-
-