Class SystemMap.SystemMapElement
java.lang.Object
com.inductiveautomation.ignition.gateway.web.models.SystemMap.SystemMapElement
- All Implemented Interfaces:
Serializable,Comparable<SystemMap.SystemMapElement>
- Enclosing class:
- SystemMap
public static class SystemMap.SystemMapElement
extends Object
implements Serializable, Comparable<SystemMap.SystemMapElement>
The SystemMapElement is a block inside of the system map, representing distinct part of the overall system. It is
created with a title, an order (vertical position index, relative to other elements), and a link to the status
panel for the element.
After creating the element, the module can add StatusItems to it. Several convenience functions are provided for the most common types of status, such as the number of "connected objects".
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA textual status item to be displayed inside a SystemMapElement.static enum -
Constructor Summary
ConstructorsConstructorDescriptionSystemMapElement(int order, String titleKey, String statusPanelLink) SystemMapElement(int order, String titleKey, String statusPanelLink, boolean linkExternal) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddNumConnectedStatusItem(int numConnected, int total) Adds a status item like: "%d/%d connected" that has a warning state if numConnected is less than total.voidaddNumOpenStatusItem(int numOpen) Adds a status item like: "%d open".voidaddStatusItem(SystemMap.SystemMapElement.StatusItem statusItem) voidaddStatusItem(String display, SystemMap.SystemMapElement.StatusItemState state) voidaddStatusItemf(SystemMap.SystemMapElement.StatusItemState state, String bundleKey, Object... args) intbyte[]byte[]getTitle()booleanisActive()booleanbooleanvoidsetActive(boolean active) voidsetActiveIcon(byte[] activeIcon) voidShortcut for setting the active and inactive icons, assuming they are accessible through the classloader relative to the given class.voidsetIconVisible(boolean iconVisible) voidsetInactiveIcon(byte[] inactiveIcon)
-
Constructor Details
-
SystemMapElement
-
SystemMapElement
-
-
Method Details
-
addNumConnectedStatusItem
public void addNumConnectedStatusItem(int numConnected, int total) Adds a status item like: "%d/%d connected" that has a warning state if numConnected is less than total. Also clears the SystemMapElement.active flag if total==0 -
addNumOpenStatusItem
public void addNumOpenStatusItem(int numOpen) Adds a status item like: "%d open". Also clears the SystemMapElement.active flag if numOpen==0 -
addStatusItemf
public void addStatusItemf(SystemMap.SystemMapElement.StatusItemState state, String bundleKey, Object... args) -
addStatusItem
-
addStatusItem
-
getStatusItems
-
compareTo
- Specified by:
compareToin interfaceComparable<SystemMap.SystemMapElement>
-
getTitle
-
getStatusPanelLink
-
isLinkExternal
public boolean isLinkExternal() -
isActive
public boolean isActive() -
setActive
public void setActive(boolean active) -
getActiveIcon
public byte[] getActiveIcon() -
setActiveIcon
public void setActiveIcon(byte[] activeIcon) -
getInactiveIcon
public byte[] getInactiveIcon() -
setInactiveIcon
public void setInactiveIcon(byte[] inactiveIcon) -
setIcons
Shortcut for setting the active and inactive icons, assuming they are accessible through the classloader relative to the given class. The path pattern will be used with %s replaced with "active" and "inactive", like so:element.setIcons(getClass(), "images/elmicon_%s.png");
Somewhat cheesy, but effective!
- Throws:
IOException- when unable to read from the input streams obtained from class.getResourceAsStream()NullPointerException- if one of the icons is not found.
-
isIconVisible
public boolean isIconVisible() -
setIconVisible
public void setIconVisible(boolean iconVisible)
-