Atalho ENTER e TextArea em Vaadin

TextField f = new TextField();
Button b = new Button("Save");
b.setClickShortcut(KeyCode.ENTER); // For quick saving from text field itself

TextArea longText = new TextArea(); // "Enter" is garbled here

Quente para fazer o atalho funcionar apenas no campo de texto?