Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8100682

Add support for binds to builders

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P3 P3
    • 9
    • fx2.0
    • javafx

      In addition to being able to define property values in the built object, it would be good if builders could establish binds for properties that support them. The invocation could look either like this:

      Rectangle r = RectangleBuilder.begin().x(100).bindY(otherRectangle.yProperty()).bindBidirectionalHeight(otherRectangle.heightProperty()).end();

      or (as suggested by Alexander Kouznetsov) like this:

      Rectangle r = RectangleBuilder.begin().x(100).y().bind(otherRectangle.yProperty()).height().bindBidirectional(otherRectangle.heightProperty()).end();

      where the y() method returns an auxiliary class DoubleBinder (in this case) which has methods bind(ObservableValue<? extends Number>) and bindBidirectional(Property<Number>).

            ekrejcir Eva Krejčířová (Inactive)
            emcmanuswse Eamonn McManus (Inactive)
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: