Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment