* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The cue-before property.
*/
public String traitCueBefore(final FObj fobj, final FoContext context) {
AbstractCue property = (AbstractCue) getProperty(FoProperty.CUE_BEFORE);
if (property != null) {
return property.getValue(context, fobj,
FoProperty.CUE_BEFORE);
}
// Try the shorthand
property = (AbstractCue) getProperty(FoProperty.CUE);
if (property != null) {
return property.getShorthandValue(context,
fobj, FoProperty.CUE_BEFORE);
}
return AbstractCue.getValueNoInstance();
}