Package com.quartetfs.fwk
Interface IPropertyInfo
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
PropertyInfo
public interface IPropertyInfo extends Serializable
Interface to store anIPropertymetadata.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExpression()The expression of the property.StringgetName()The name of the property.StringgetPluginKey()The plugin key, if one wants to instantiate a custom property.
-
-
-
Method Detail
-
getName
String getName()
The name of the property. It is required to be non null.- Returns:
- the name of the property.
-
getExpression
String getExpression()
The expression of the property. Can be null.- Returns:
- the expression of the property.
-
getPluginKey
String getPluginKey()
The plugin key, if one wants to instantiate a custom property. Can be null.- Returns:
- the plugin key of the property.
-
-