419420421422423424425426427428429
Visibility v = getChildVisibility(targetChild); if (v != null) { if (okToUseGui) v.okToUseGui(); else v.dontUseGui(); } if (getChildSerializable(targetChild) != null) serializable++;
433434435436437438439440441442443
if (bccp != null) { v = getChildVisibility(bccp); if (v != null) { if (okToUseGui) v.okToUseGui(); else v.dontUseGui(); } if (getChildSerializable(bccp) != null) serializable++;
789790791792793794795796797798799
// lets also tell the Children that can that they may use their GUI's synchronized(children) { for (Iterator i = children.keySet().iterator(); i.hasNext();) { Visibility v = getChildVisibility(i.next()); if (v != null) v.okToUseGui(); } } } }
228229230231232233234235236237238
// set an appropriate type of ability to render GUI Visibility vis = getChildVisibility(targetChild); if (vis != null) { if (this.okToUseGui) { vis.okToUseGui(); } else { vis.dontUseGui(); } }
766767768769770771772773774775776
for (Iterator it = iterator(); it.hasNext();) { Object next = it.next(); Visibility vis = getChildVisibility(next); if (vis != null) { vis.okToUseGui(); } } } public void propertyChange(PropertyChangeEvent pce) {
434435436437438439440441442443444
448449450451452453454455456457458
809810811812813814815816817818819
436437438439440441442443444445446
450451452453454455456457458459460