Package com.vaadin.mpr.core.client
Class ComponentSettings
- java.lang.Object
-
- com.vaadin.mpr.core.client.ComponentSettings
-
- All Implemented Interfaces:
Serializable
public class ComponentSettings extends Object implements Serializable
Component settings class containing target node id and application id.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComponentSettings()Component settings constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAppId()Get the Flow application id.intgetNodeId()Get wrapper element node id.voidsetAppId(String appId)Set the Flow application id.voidsetNodeId(int nodeId)Set the node id of the wrapping node.
-
-
-
Method Detail
-
setAppId
public void setAppId(String appId)
Set the Flow application id.- Parameters:
appId- Flow application id
-
setNodeId
public void setNodeId(int nodeId)
Set the node id of the wrapping node.- Parameters:
nodeId- wrapper node id
-
getAppId
public String getAppId()
Get the Flow application id.- Returns:
- target application id
-
getNodeId
public int getNodeId()
Get wrapper element node id.- Returns:
- wrapper node id
-
-