172173174175176177178179180181182
*/ public void clearSubtitles() { final Iterator iterator = this.subtitles.iterator(); while (iterator.hasNext()) { final Title t = (Title) iterator.next(); t.removeChangeListener(this); } this.subtitles.clear(); this.fireChartChanged(); }