Is it possible to know what UIComponent is calling the getter of some property in managed bean?
@ManagedBean
@SessionScoped
public class SomeBean {
private String color;
public String getColor() {
// Here I would like to know which UIComponent called this method.
return color;
}
}