* @return The closest non-wrapper ancestor.
*/
public FObj getNonWrapperAncestor(final FoContext context) {
FObj ancestor = this.effectiveParent(context);
while (ancestor instanceof Wrapper) {
ancestor = ancestor.effectiveParent(context);
}
return ancestor;
}
/**