
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 0.63 KB | hits: 9 | expires: Never
public void removeAllContentPage() {
Component win = content.getFellowIfAny("employee");
if (win != null) {
content.removeChild(win);
return;
}
win = content.getFellowIfAny("person");
if (win != null) {
content.removeChild(win);
return;
}
win = content.getFellowIfAny("company");
if (win != null) {
content.removeChild(win);
return;
}
win = content.getFellowIfAny("result");
if (win != null) {
content.removeChild(win);
return;
}
}