Interface IPropertyAssignmentImmutable
-
public interface IPropertyAssignmentImmutableThe definition of a property assigned to entity type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEntityTypeCode()Return the code of the assigned entity type.java.lang.LonggetPositionInForms()Return the position at which the property will be rendered when editing/registering objects of the specified entity type.java.lang.StringgetPropertyTypeCode()Return the code of the assigned property type.java.lang.StringgetPropertyTypeDescription()Return the description of the assigned property typejava.lang.StringgetPropertyTypeLabel()Return the label of the assigned property typejava.lang.StringgetScriptName()Return the name of the script in case of a dynamic or managed propertyjava.lang.StringgetSection()Return the name of the form section.booleanisDynamic()Returntrueif the property is dynamicbooleanisManaged()Returntrueif the property is managedbooleanisMandatory()Returntrueif the property is mandatory for the assigned entity type.booleanshownInEditViews()Returntrueif the property is shown in the edit views
-
-
-
Method Detail
-
getEntityTypeCode
java.lang.String getEntityTypeCode()
Return the code of the assigned entity type.
-
getPropertyTypeLabel
java.lang.String getPropertyTypeLabel()
Return the label of the assigned property type
-
getPropertyTypeDescription
java.lang.String getPropertyTypeDescription()
Return the description of the assigned property type
-
getPropertyTypeCode
java.lang.String getPropertyTypeCode()
Return the code of the assigned property type.
-
isMandatory
boolean isMandatory()
Returntrueif the property is mandatory for the assigned entity type.
-
getSection
java.lang.String getSection()
Return the name of the form section.
-
getPositionInForms
java.lang.Long getPositionInForms()
Return the position at which the property will be rendered when editing/registering objects of the specified entity type.
-
getScriptName
java.lang.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
-
-