211212213214215216217218219220221
MTComponent[] childs = this.getChildren(); for (int i = 0; i < childs.length; i++) { MTComponent child = childs[i]; if (child instanceof MTPolygon) { MTPolygon poly = (MTPolygon) child; poly.disableAndDeleteDisplayLists(); } } } }