* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The role property.
*/
public String getRole(final FObj fobj, final FoContext context) {
final PdRole property = (PdRole) getProperty(FoProperty.ROLE);
if (property == null) {
return PdRole.getValueNoInstance();
}
return property.getValue(context, fobj);
}