public void setComment (final String comment);
/**
- * Country code
+ * Getter for country instance
* <p>
- * @return the countryCode
+ * @return Country instance
*/
public Country getCountry ();
/**
- * Country code
+ * Setter for country instance
* <p>
- * @param countryCode the countryCode to set
+ * @param country Country instance
*/
- public void setCountry (final Country countryCode);
+ public void setCountry (final Country country);
/**
* Getter for email address
<div class="table_row">
<div class="table_left">
- <h:outputLabel for="countryCode" value="#{msg.PERSONAL_DATA_COUNTRY_CODE}" />
+ <h:outputLabel for="country" value="#{msg.PERSONAL_DATA_COUNTRY_CODE}" />
</div>
<div class="table_right">
- <h:inputText class="input" id="countryCode" size="2" maxlength="2" value="#{userController.countryCode}" required="true" />
+ <h:inputText class="input" id="country" size="2" maxlength="2" value="#{userController.country}" required="true" />
</div>
<div class="clear"></div>