Annotation Type BoundSelection


  • @Retention(RUNTIME)
    @Target(FIELD)
    public @interface BoundSelection
    A binding for an interface component that has a selection like a JList or JComboBox.
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String to
      The model property to bind to.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      boolean multi
      Whether or not a JList should bind with multiselect.
      java.lang.String nullValue
      How to render the null value in a JComboBox.
      java.lang.String[] on
      When this binding should occur.
    • Element Detail

      • to

        java.lang.String to
        The model property to bind to.
      • on

        java.lang.String[] on
        When this binding should occur.
        Default:
        {""}
      • nullValue

        java.lang.String nullValue
        How to render the null value in a JComboBox.
        Default:
        ""
      • multi

        boolean multi
        Whether or not a JList should bind with multiselect.
        Default:
        false