* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The src property.
*/
public String getSrc(final FObj fobj, final FoContext context) {
final PdSrc property = (PdSrc) getProperty(FoProperty.SRC);
if (property == null) {
return PdSrc.traitValueNoInstance(fobj);
}
return property.traitValue(context, fobj);
}