* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The auto-restore property.
*/
public boolean traitAutoRestore(final FObj fobj, final FoContext context) {
final PdAutoRestore property = (PdAutoRestore) getProperty(
FoProperty.AUTO_RESTORE);
if (property != null) {
return property.getValue(context, fobj);
}
return PdAutoRestore.getValueNoInstance(context, fobj);
}