Interface ApplicationUI<M,​H extends AbstractApplicationUIHandler<M,​?>>

All Superinterfaces:
JAXXContext, JAXXObject, java.io.Serializable
All Known Implementing Classes:
ApplicationActionUI

public interface ApplicationUI<M,​H extends AbstractApplicationUIHandler<M,​?>>
extends JAXXObject
Contract to place on each ui. Created on 11/23/13.
Since:
2.8
Author:
Tony Chemit - chemit@codelutin.com
  • Field Details

    • INT_1_DIGITS_PATTERN

      static final java.lang.String INT_1_DIGITS_PATTERN
      Pattern to use for short numeric values in editors with max 1 digits.
      Since:
      0.2
      See Also:
      Constant Field Values
    • INT_2_DIGITS_PATTERN

      static final java.lang.String INT_2_DIGITS_PATTERN
      Pattern to use for short numeric values in editors with max 2 digits.
      Since:
      0.1
      See Also:
      Constant Field Values
    • SIGNED_INT_2_DIGITS_PATTERN

      static final java.lang.String SIGNED_INT_2_DIGITS_PATTERN
      Pattern to use for signed numeric values in editors with max 2 digits.
      Since:
      2.8
      See Also:
      Constant Field Values
    • INT_3_DIGITS_PATTERN

      static final java.lang.String INT_3_DIGITS_PATTERN
      Pattern to use for short numeric values in editors with max 3 digits.
      Since:
      0.1
      See Also:
      Constant Field Values
    • SIGNED_INT_3_DIGITS_PATTERN

      static final java.lang.String SIGNED_INT_3_DIGITS_PATTERN
      Pattern to use for singed numeric values in editors with max 3 digits.
      Since:
      2.8
      See Also:
      Constant Field Values
    • INT_4_DIGITS_PATTERN

      static final java.lang.String INT_4_DIGITS_PATTERN
      Pattern to use for short numeric values in editors with max 4 digits.
      Since:
      0.2
      See Also:
      Constant Field Values
    • INT_6_DIGITS_PATTERN

      static final java.lang.String INT_6_DIGITS_PATTERN
      Pattern to use for integer numeric values in editors with max 6 digits.
      Since:
      0.1
      See Also:
      Constant Field Values
    • INT_7_DIGITS_PATTERN

      static final java.lang.String INT_7_DIGITS_PATTERN
      Pattern to use for integer numeric values in editors with max 7 digits.
      Since:
      0.1
      See Also:
      Constant Field Values
    • INT_10_DIGITS_PATTERN

      static final java.lang.String INT_10_DIGITS_PATTERN
      Pattern to use for integer numeric values in editors with max 10 digits.
      Since:
      2.10
      See Also:
      Constant Field Values
    • DECIMAL1_PATTERN

      static final java.lang.String DECIMAL1_PATTERN
      Pattern to use for decimal numeric values with 1 decimal digits in editors.
      Since:
      0.1
      See Also:
      Constant Field Values
    • DECIMAL2_PATTERN

      static final java.lang.String DECIMAL2_PATTERN
      Pattern to use for decimal numeric values with 2 decimal digits in editors.
      Since:
      0.1
      See Also:
      Constant Field Values
    • DECIMAL3_PATTERN

      static final java.lang.String DECIMAL3_PATTERN
      Pattern to use for decimal numeric values with 3 decimal digits in editors.
      Since:
      0.1
      See Also:
      Constant Field Values
    • DECIMAL4_PATTERN

      static final java.lang.String DECIMAL4_PATTERN
      Pattern to use for decimal numeric values with 4 decimal digits in editors.
      Since:
      2.6
      See Also:
      Constant Field Values
    • DECIMAL2_DIGITS_PATTERN

      static final java.lang.String DECIMAL2_DIGITS_PATTERN
      Pattern to use for decimal numeric values with 2 digits + 3 decimal digits in editors.
      Since:
      2.8
      See Also:
      Constant Field Values
  • Method Details

    • getModel

      M getModel()
    • getHandler

      H getHandler()