* Returns the precedence property.
* @param fobj The FObj to which the property belongs.
* @return The precedence property.
*/
public boolean getPrecedence(final FObj fobj) {
final PdPrecedence property = (PdPrecedence) getProperty(
FoProperty.PRECEDENCE);
/* Null context is OK, because the object this applies to cannot be
* insider a marker. */
final FoContext context = null;
if (property != null) {
return property.getValue(context, fobj);
}
return PdPrecedence.getValueNoInstance();
}