Package jadex.bridge.nonfunctional
Interface INFPropertyMetaInfo
- 
- All Known Implementing Classes:
- NFPropertyMetaInfo
 
 public interface INFPropertyMetaInfoMeta information about a non-functional property.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Gets the name of the property.INFProperty.TargetgetTarget()Get the target of the property.ClassInfogetType()Gets the type of the property.ClassInfogetUnit()Gets the unit of the property.longgetUpdateRate()Gets the update rate of the property, if it exists, for dynamic properties.booleanisDynamic()Checks if the property is dynamic.booleanisRealtime()Checks if the property is real time.
 
- 
- 
- 
Method Detail- 
getNamejava.lang.String getName() Gets the name of the property.- Returns:
- The name of the property.
 
 - 
getTypeClassInfo getType() Gets the type of the property. This is the Java type of the values.- Returns:
- The type of the property.
 
 - 
getUnitClassInfo getUnit() Gets the unit of the property.- Returns:
- The unit of the property.
 
 - 
isDynamicboolean isDynamic() Checks if the property is dynamic.- Returns:
- The dynamic.
 
 - 
getUpdateRatelong getUpdateRate() Gets the update rate of the property, if it exists, for dynamic properties.- Returns:
- The update rate.
 
 - 
isRealtimeboolean isRealtime() Checks if the property is real time.- Returns:
- The real time flag.
 
 - 
getTargetINFProperty.Target getTarget() Get the target of the property. If the target is not the element itself a reference will be created.- Returns:
- The target where the nf property is declared. (This element will collect the data).
 
 
- 
 
-