* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The text-align-last property.
*/
public FoValue getTextAlignLast(final FObj fobj, final FoContext context) {
final PdTextAlignLast property = (PdTextAlignLast) getProperty(
FoProperty.TEXT_ALIGN_LAST);
if (property == null) {
return PdTextAlignLast.getValueNoInstance(context, fobj);
}
return property.getValue(context, fobj);
}