/**
* Returns the grouping-size property.
* @return The grouping-size property.
*/
public int getGroupingSize() {
final PdGroupingSize property = (PdGroupingSize) getProperty(
FoProperty.GROUPING_SIZE);
if (property != null) {
return property.getValue();
}
return PdGroupingSize.getValueNoInstance();
}