10041005100610071008100910101011101210131014
*/ public void configureDomainAxes() { for (int i = 0; i < this.domainAxes.size(); i++) { CategoryAxis axis = (CategoryAxis) this.domainAxes.get(i); if (axis != null) { axis.configure(); } } } /**
10001001100210031004100510061007100810091010
183184185186187188189190191192193
subplot.setOrientation(getOrientation()); subplot.addChangeListener(this); this.subplots.add(subplot); CategoryAxis axis = getDomainAxis(); if (axis != null) { axis.configure(); } fireChangeEvent(); } /**
213214215216217218219220221222223
this.subplots.remove(position); subplot.setParent(null); subplot.removeChangeListener(this); CategoryAxis domain = getDomainAxis(); if (domain != null) { domain.configure(); } fireChangeEvent(); } }
179180181182183184185186187188189
211212213214215216217218219220221
985986987988989990991992993994995
914915916917918919920921922923924
630631632633634635636637638639640
155156157158159160161162163164165
subplot.addChangeListener(this); this.subplots.add(subplot); this.totalWeight += weight; CategoryAxis axis = getDomainAxis(); if (axis != null) { axis.configure(); } notifyListeners(new PlotChangeEvent(this)); } /**