137138139140141142143144145
/** * */ public void setSplitType(SplitTypeEnum splitTypeValue) { SplitTypeEnum old = this.splitTypeValue; this.splitTypeValue = splitTypeValue; getEventSupport().firePropertyChange(JRBaseBand.PROPERTY_SPLIT_TYPE, old, this.splitTypeValue); }
125126127128129130131132133
6869707172737475767778
{ band.setSplitType(SplitTypeEnum.PREVENT); } } SplitTypeEnum splitType = SplitTypeEnum.getByName(atts.getValue(JRXmlConstants.ATTRIBUTE_splitType)); if (splitType != null) { band.setSplitType(splitType); }