Package org.teamapps.dto
Class UiNetworkNode
- java.lang.Object
-
- org.teamapps.dto.UiNetworkNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUiNetworkNode.ExpandState
-
Field Summary
Fields Modifier and Type Field Description protected UiColorbackgroundColorprotected UiColorborderColorprotected floatborderRadiusprotected floatborderWidthprotected UiNetworkNode.ExpandStateexpandStateprotected intheightprotected UiTreeGraphNodeIconiconprotected java.lang.Stringidprotected UiTreeGraphNodeImageimageprotected UiClientRecordrecordprotected UiTemplatetemplateprotected intwidth
-
Constructor Summary
Constructors Constructor Description UiNetworkNode()Deprecated.Only for Jackson deserialization.UiNetworkNode(java.lang.String id, int width, int height)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UiColorgetBackgroundColor()UiColorgetBorderColor()floatgetBorderRadius()floatgetBorderWidth()UiNetworkNode.ExpandStategetExpandState()intgetHeight()UiTreeGraphNodeIcongetIcon()java.lang.StringgetId()UiTreeGraphNodeImagegetImage()UiClientRecordgetRecord()UiTemplategetTemplate()UiObjectTypegetUiObjectType()intgetWidth()UiNetworkNodesetBackgroundColor(UiColor backgroundColor)UiNetworkNodesetBorderColor(UiColor borderColor)UiNetworkNodesetBorderRadius(float borderRadius)UiNetworkNodesetBorderWidth(float borderWidth)UiNetworkNodesetExpandState(UiNetworkNode.ExpandState expandState)UiNetworkNodesetIcon(UiTreeGraphNodeIcon icon)UiNetworkNodesetImage(UiTreeGraphNodeImage image)UiNetworkNodesetRecord(UiClientRecord record)UiNetworkNodesetTemplate(UiTemplate template)java.lang.StringtoString()
-
-
-
Field Detail
-
id
protected java.lang.String id
-
width
protected int width
-
height
protected int height
-
backgroundColor
protected UiColor backgroundColor
-
borderColor
protected UiColor borderColor
-
borderWidth
protected float borderWidth
-
borderRadius
protected float borderRadius
-
image
protected UiTreeGraphNodeImage image
-
icon
protected UiTreeGraphNodeIcon icon
-
template
protected UiTemplate template
-
record
protected UiClientRecord record
-
expandState
protected UiNetworkNode.ExpandState expandState
-
-
Method Detail
-
getUiObjectType
public UiObjectType getUiObjectType()
- Specified by:
getUiObjectTypein interfaceUiObject
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getId
public java.lang.String getId()
-
getWidth
public int getWidth()
-
getHeight
public int getHeight()
-
getBackgroundColor
public UiColor getBackgroundColor()
-
getBorderColor
public UiColor getBorderColor()
-
getBorderWidth
public float getBorderWidth()
-
getBorderRadius
public float getBorderRadius()
-
getImage
public UiTreeGraphNodeImage getImage()
-
getIcon
public UiTreeGraphNodeIcon getIcon()
-
getTemplate
public UiTemplate getTemplate()
-
getRecord
public UiClientRecord getRecord()
-
getExpandState
public UiNetworkNode.ExpandState getExpandState()
-
setBackgroundColor
public UiNetworkNode setBackgroundColor(UiColor backgroundColor)
-
setBorderColor
public UiNetworkNode setBorderColor(UiColor borderColor)
-
setBorderWidth
public UiNetworkNode setBorderWidth(float borderWidth)
-
setBorderRadius
public UiNetworkNode setBorderRadius(float borderRadius)
-
setImage
public UiNetworkNode setImage(UiTreeGraphNodeImage image)
-
setIcon
public UiNetworkNode setIcon(UiTreeGraphNodeIcon icon)
-
setTemplate
public UiNetworkNode setTemplate(UiTemplate template)
-
setRecord
public UiNetworkNode setRecord(UiClientRecord record)
-
setExpandState
public UiNetworkNode setExpandState(UiNetworkNode.ExpandState expandState)
-
-