* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The display-align property.
*/
public FoValue getDisplayAlign(final FObj fobj, final FoContext context) {
final PdDisplayAlign property = (PdDisplayAlign) getProperty(
FoProperty.DISPLAY_ALIGN);
if (property == null) {
return PdDisplayAlign.traitValueNoInstance();
}
return property.traitValue(context, fobj);
}