Class TagMeta
- java.lang.Object
-
- com.inductiveautomation.ignition.common.sqltags.model.types.TagMeta
-
- All Implemented Interfaces:
java.io.Serializable
public class TagMeta extends java.lang.Object implements java.io.Serializable
Provides information about a type of SQLTag. Tags are created by defining an ExtendedTagType, and this this class provides information about it, such as editing capabilities, what icon to display for it, etc.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TagMeta()
TagMeta(ExtendedTagType type, Flags flags)
TagMeta(ExtendedTagType type, Flags flags, java.util.Set<TagProp> bindableProps)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<TagProp>
getBindableProps()
Flags
getEditingFlags()
ExtendedTagType
getType()
void
setBindableProps(java.util.Set<TagProp> bindableProps)
void
setEditingFlags(Flags editingFlags)
void
setType(ExtendedTagType type)
-
-
-
Constructor Detail
-
TagMeta
public TagMeta()
-
TagMeta
public TagMeta(ExtendedTagType type, Flags flags)
-
TagMeta
public TagMeta(ExtendedTagType type, Flags flags, java.util.Set<TagProp> bindableProps)
-
-
Method Detail
-
getType
public ExtendedTagType getType()
-
setType
public void setType(ExtendedTagType type)
-
getBindableProps
public java.util.Set<TagProp> getBindableProps()
-
setBindableProps
public void setBindableProps(java.util.Set<TagProp> bindableProps)
-
getEditingFlags
public Flags getEditingFlags()
-
setEditingFlags
public void setEditingFlags(Flags editingFlags)
-
-