* issues.
* @return The background-repeat property.
*/
public FoValue getBackgroundRepeat(final FObj fobj,
final FoContext context) {
PdBackgroundRepeat property = (PdBackgroundRepeat) getProperty(
FoProperty.BACKGROUND_REPEAT);
if (property != null) {
return property.getValue(context, fobj);
}
// Try the shorthand
final PdBackground background = (PdBackground) getProperty(
FoProperty.BACKGROUND);
if (background != null) {
property = background.getRepeat();
if (property != null) {
return property.getValue(context, fobj);
}
}
return PdBackgroundRepeat.getValueNoInstance();
}