* Returns the target-presentation-context property.
* @param fobj The FObj to which the property belongs.
* @return The target-presentation-context property.
*/
public String traitTargetPresentationContext(final FObj fobj) {
final PdTargetPresentationContext property =
(PdTargetPresentationContext) getProperty(
FoProperty.TARGET_PRESENTATION_CONTEXT);
if (property != null) {
return property.getValue(fobj);
}
return PdTargetPresentationContext.getValueNoInstance(fobj);
}