ObjectExpression.getValue() method should be final

XMLWordPrintable

    • Type: Bug
    • Resolution: Won't Fix
    • Priority: P4
    • None
    • Affects Version/s: 8
    • Component/s: javafx
    • Environment:

      8.0-graphics-scrum-b1339-x64

      It looks like shortcut methods such as ObjectExpression.getValue() should be final. Otherwise you have to override both get and getValue in order to alter their behavior. Is it too late to make them final?

      public abstract class ObjectExpression<T> implements ObservableObjectValue<T> {

          @Override
          public T getValue() {
              return get();
          }

          ....

      }

            Assignee:
            Martin Sládeček
            Reporter:
            Alexander Kuznetcov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: