I need to access a components tag attribute like:
<h:inputtext id="input_age"/>
from a backing bean, like:
public class UserInfo {
String inputAgeId;
public UserInfo() {
inputAgeId = { /*code to access component tag attribute*/ }.getStyleClass();
}
}