Here's code that a user might write:
runtime.add(draggable, view);
ReactiveProperty.of(view, CENTER).subscribe( value -> {
log(value);
})
This wouldn't work because Draggable writes to the view's TRANSLATION instead of CENTER. However, the user may expect this to work.