* Returns the maximum-repeats property.
* @param fobj The FObj to which the property belongs.
* @return The maximum-repeats property.
*/
public int getMaximumRepeats(final FObj fobj) {
final PdMaximumRepeats property = (PdMaximumRepeats)
getProperty(FoProperty.MAXIMUM_REPEATS);
if (property != null) {
return property.getValue(fobj);
}
return PdMaximumRepeats.getValueNoInstance();
}