Interface IProperty.IDisplaySettings

All Known Implementing Classes:
PortalProperty.DisplaySettings
Enclosing interface:
IProperty

public static interface IProperty.IDisplaySettings
Display settings
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Type of the field
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The maximum number of chars accepted by the field.
    int
    The number of rows accepted by the field.
    int
    The size of the field.
    Retrieves the type of the field.
    boolean
    Checks if the field is mandatory.
  • Method Details

    • isMandatory

      boolean isMandatory()
      Checks if the field is mandatory.
      Returns:
      true if the field is mandatory, false otherwise.
    • getType

      String getType()
      Retrieves the type of the field.
      Returns:
      A java.lang.String value.
    • getSize

      int getSize()
      The size of the field.
      Returns:
      A int value.
    • getMaxChars

      int getMaxChars()
      The maximum number of chars accepted by the field.
      Returns:
      A int value.
    • getNbOfRows

      int getNbOfRows()
      The number of rows accepted by the field.
      Returns:
      A int value.