テキスト フィールドを使用して vaadin で formlayout を使用している場合、テキスト フィールドの左側にテキスト フィールドのキャプションが作成されます。テキスト フィールドの右側にキャプションが必要な場合はどうでしょうか。
FormLayout fieldsLayout = new FormLayout();
TextField userNameFld = new TextField("User Name:", true);
userNameFld.setIcon(FontAwesome.USER);
fieldsLayout.addComponent(userNameFld);
PasswordField passwordFld = new PasswordField("Password:", true);
fieldsLayout.addComponent(passwordFld);
TextField companyFld = new TextField("Company Name:", true);
fieldsLayout.addComponent(companyFld);
キャプションとテキスト フィールドの位置を置き換える方法