/** * @param form * @param tag * @return */ private String verifyFormName(Form<?> form, ComponentTag tag) { IValueMap attributes = tag.getAttributes(); String value = attributes.getString("name"); if (value == null) { value = form.getId(); tag.put("name", value); } return value; }