Renamed TimeTrackerComponent#afterCompose method

* Now it's called "compose"
* For an explanation check the comment that's over the method

FEA: ItEr02S03MigracionZK5
This commit is contained in:
Farruco Sanjurjo 2011-01-17 12:38:25 +01:00
parent eeb52f5fa9
commit 97e7770ed7

View file

@ -77,9 +77,15 @@ public abstract class TimeTrackerComponent extends HtmlMacroComponent {
return timeTrackerElementId;
}
/*
* fsanjurjo: I'm temporary changing the name of this method
* (from afterCompose to compose) to get it called after calling recreate().
* To understand why, please read this: http://www.zkoss.org/forum/listComment/14905
* Also renamed the call to its parent.
* */
@Override
public void afterCompose() {
super.afterCompose();
public void compose() {
super.compose();
Component fellow = getFellow("firstleveldetails");
addSecondLevels(fellow.getParent());
}