Class GraphModelTemplate
- java.lang.Object
-
- com.orchestranetworks.addon.dmdv.model.extension.GraphModelTemplate
-
public final class GraphModelTemplate extends java.lang.ObjectRepresents a template configuration.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description GraphModelTemplate()Creates default template using the add-on's default settings.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DisplayOptionsgetDisplayOptions()Returns the display options.TableStylegetExternalTableStyle()Returns the external table style.java.lang.StringgetHoverColor()Returns the hover color in hex.LinkStylegetLinkStyle()Returns the link style.SynchronizationStylegetSynchronizationStyle()Returns the synchronization style.TableStylegetTableStyle()Returns the table style.TooltipStylegetTooltipStyle()Returns the tooltip style.voidsetDisplayOptions(DisplayOptions displayOptions)Sets the display options.voidsetExternalTableStyle(TableStyle externalTableStyle)Sets the external table style.voidsetHoverColor(java.lang.String hoverColor)Sets the hover color in hex.voidsetLinkStyle(LinkStyle linkStyle)Sets the link style.voidsetSynchronizationStyle(SynchronizationStyle synchronizationStyle)Sets the synchronization style.voidsetTableStyle(TableStyle tableStyle)Sets the table style.voidsetTooltipStyle(TooltipStyle tooltipStyle)Sets the tooltip style.
-
-
-
Method Detail
-
getTableStyle
public TableStyle getTableStyle()
Returns the table style.
-
setTableStyle
public void setTableStyle(TableStyle tableStyle)
Sets the table style.- Parameters:
tableStyle- the style configuration for table
-
getExternalTableStyle
public TableStyle getExternalTableStyle()
Returns the external table style.
-
setExternalTableStyle
public void setExternalTableStyle(TableStyle externalTableStyle)
Sets the external table style.- Parameters:
externalTableStyle- the style configuration for external table
-
getTooltipStyle
public TooltipStyle getTooltipStyle()
Returns the tooltip style.
-
setTooltipStyle
public void setTooltipStyle(TooltipStyle tooltipStyle)
Sets the tooltip style.- Parameters:
tooltipStyle- the style configuration for tooltip
-
getLinkStyle
public LinkStyle getLinkStyle()
Returns the link style.
-
setLinkStyle
public void setLinkStyle(LinkStyle linkStyle)
Sets the link style.- Parameters:
linkStyle- the style configuration for link
-
getSynchronizationStyle
public SynchronizationStyle getSynchronizationStyle()
Returns the synchronization style.
-
setSynchronizationStyle
public void setSynchronizationStyle(SynchronizationStyle synchronizationStyle)
Sets the synchronization style.- Parameters:
synchronizationStyle- the style configuration for synchronization items
-
getHoverColor
public java.lang.String getHoverColor()
Returns the hover color in hex.
-
setHoverColor
public void setHoverColor(java.lang.String hoverColor)
Sets the hover color in hex.- Parameters:
hoverColor- color in hex
-
getDisplayOptions
public DisplayOptions getDisplayOptions()
Returns the display options.- See Also:
DisplayOptions
-
setDisplayOptions
public void setDisplayOptions(DisplayOptions displayOptions)
Sets the display options.- Parameters:
displayOptions- the display configuration for graph
-
-