Interface IPropertyAssignmentImmutable
public interface IPropertyAssignmentImmutable
The definition of a property assigned to entity type.
-
Method Summary
Modifier and TypeMethodDescriptionReturn the code of the assigned entity type.Return the position at which the property will be rendered when editing/registering objects of the specified entity type.Return the code of the assigned property type.Return the description of the assigned property typeReturn the label of the assigned property typeReturn the name of the script in case of a dynamic or managed propertyReturn the name of the form section.booleanReturntrueif the property is dynamicbooleanReturntrueif the property is managedbooleanReturntrueif the property is mandatory for the assigned entity type.booleanReturntrueif the property is shown in the edit views
-
Method Details
-
getEntityTypeCode
String getEntityTypeCode()Return the code of the assigned entity type. -
getPropertyTypeLabel
String getPropertyTypeLabel()Return the label of the assigned property type -
getPropertyTypeDescription
String getPropertyTypeDescription()Return the description of the assigned property type -
getPropertyTypeCode
String getPropertyTypeCode()Return the code of the assigned property type. -
isMandatory
boolean isMandatory()Returntrueif the property is mandatory for the assigned entity type. -
getSection
String getSection()Return the name of the form section. -
getPositionInForms
Long getPositionInForms()Return the position at which the property will be rendered when editing/registering objects of the specified entity type. -
getScriptName
String getScriptName()Return the name of the script in case of a dynamic or managed property -
isDynamic
boolean isDynamic()Returntrueif the property is dynamic -
isManaged
boolean isManaged()Returntrueif the property is managed -
shownInEditViews
boolean shownInEditViews()Returntrueif the property is shown in the edit views
-