187188189190191192193194195196197
if (_slaves != null) { ListIterator it = _slaves.listIterator(0); while (it.hasNext()) { Figure fig = (Figure) it.next(); fig.translate(x, y); } } } }
287288289290291292293294295296297
if (_slaves != null) { ListIterator it = _slaves.listIterator(0); while (it.hasNext()) { Figure fig = (Figure) it.next(); fig.translate(dx, dy); } } }
196197198199200201202203204205206
if (_slaves != null) { ListIterator it = _slaves.listIterator(0); while (it.hasNext()) { Figure fig = (Figure) it.next(); fig.translate(x, y); } } }