Interface DescriptiveProperty<T>
- 
- All Superinterfaces:
- Property<T>,- java.io.Serializable
 - All Known Subinterfaces:
- AlarmProperty<T>,- ConfigurationProperty<T>,- NotificationProfileProperty<T>
 - All Known Implementing Classes:
- AlarmModeProperties,- AssociatedData,- BasicAlarmProperty,- BasicConfigurationProperty,- BasicDescriptiveProperty,- BasicNotificationProfileProperty,- CommonAlarmProperties,- CommonAlarmProperties.CalculatedAlarmProperty,- WellKnownAlarmProperties,- ZoneTraitDescriptor
 
 public interface DescriptiveProperty<T> extends Property<T> Extends Property with a few additional fields that can be used to make display nicer.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description LocalizedStringgetCategory()The category under which this property will be placed when editing.LocalizedStringgetDescription()Optional description/documentation for the property.LocalizedStringgetDisplayName()A friendly display name for the property.- 
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertygetDefaultValue, getName, getType
 
- 
 
- 
- 
- 
Method Detail- 
getDisplayNameLocalizedString getDisplayName() A friendly display name for the property. If not set, will return a raw LocalizedString that contains the property name.
 - 
getCategoryLocalizedString getCategory() The category under which this property will be placed when editing.
 - 
getDescriptionLocalizedString getDescription() Optional description/documentation for the property. May return null if no information is available.
 
- 
 
-