knep
24 Aug 2010, 7:31 AM
to developers of extgwt:
please support extensibility, by either making members protected or putting (protected) getters in front of, like
private Label label;
{
getLabel().setText("foo");
}
the GWT compiler would optimize that call away, so it would not cost more execution cycles and developers can easily extend existing components
best regards
please support extensibility, by either making members protected or putting (protected) getters in front of, like
private Label label;
{
getLabel().setText("foo");
}
the GWT compiler would optimize that call away, so it would not cost more execution cycles and developers can easily extend existing components
best regards