* Returns the region-name property.
* @param fobj The FObj to which the property belongs.
* @return The region-name property.
*/
public String getRegionName(final FObj fobj) {
final PdRegionName property = (PdRegionName) getProperty(
FoProperty.REGION_NAME);
if (property != null) {
return property.getValue();
}
if (fobj instanceof Region) {
return ((Region) fobj).getDefaultRegionName();
}
return null;