This file is indexed.

/usr/share/doc/libognl-java/DeveloperGuide/evaluation.html is in libognl-java-doc 2.7.3-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
<html><head><META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter&nbsp;9.&nbsp;Other API features</title><link href="../docbook.css" type="text/css" rel="stylesheet"><meta content="DocBook XSL Stylesheets V1.78.1" name="generator"><link rel="home" href="index.html" title="OGNL Developer Guide"><link rel="up" href="index.html" title="OGNL Developer Guide"><link rel="prev" href="nullHandler.html" title="Chapter&nbsp;8.&nbsp;Null Handler"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">Chapter&nbsp;9.&nbsp;Other API features</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="nullHandler.html"><img src="../images/navigation/prev.gif" alt="Prev"></a>&nbsp;</td><th align="center" width="60%">&nbsp;</th><td align="right" width="20%">&nbsp;</td></tr></table><hr></div><div class="chapter"><div class="titlepage"><div><div><h1 class="title"><a name="evaluation"></a>Chapter&nbsp;9.&nbsp;Other API features</h1></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl class="toc"><dt><span class="section"><a href="evaluation.html#N10174">Tracing Evaluations</a></span></dt></dl></div><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="N10174"></a>Tracing Evaluations</h2></div></div></div><p>As of OGNL 2.5.0 the <code class="classname">OgnlContext</code> object can automatically tracks evaluations of expressions. This tracking is kept in the <code class="classname">OgnlContext</code> as <span class="property">currentEvaluation</span> during the
            evaluation. After execution you can access the last evaluation through the <span class="property">lastEvaluation</span> property of <code class="classname">OgnlContext</code>.</p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note"><tr><td valign="top" align="center" rowspan="2" width="25"><img alt="[Note]" src="../images/admon/note.gif"></td><th align="left">Note</th></tr><tr><td valign="top" align="left"><p>The tracing feature is turned off by default. If you wish to turn it on there is a <code class="function">setTraceEvaluations()</code> method on <code class="classname">OgnlContext</code> that you can call.</p></td></tr></table></div><p>Any <a class="link" href="methodAccessors.html" title="Chapter&nbsp;3.&nbsp;Method Accessors">method accessor</a>, <a class="link" href="elementsAccessors.html" title="Chapter&nbsp;4.&nbsp;Elements Accessors">elements accessor</a>, <a class="link" href="typeConversion.html" title="Chapter&nbsp;6.&nbsp;Type Conversion">type converter</a>, <a class="link" href="propertyAccessors.html" title="Chapter&nbsp;2.&nbsp;Property Accessors">property accessor</a>
            or <a class="link" href="nullHandler.html" title="Chapter&nbsp;8.&nbsp;Null Handler">null handler</a> may find this useful to give context to the operation being performed. The <code class="classname">Evaluation</code> object is itself a tree and can be traversed up, down and left and right
            through siblings to determine the exact circumstances of an evaluation. In addition the <code class="classname">Evaluation</code> object tracks the node that was performing the operation, the source object on which that operation was being
            performed and the result of the operation. If an exception is thrown during execution the user can get the last evaluation's last descendent to find out exactly which subexpression caused the error. The execption is also tracked in
            the <code class="classname">Evaluation</code>.</p></div></div><div class="navfooter"><hr><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="nullHandler.html"><img src="../images/navigation/prev.gif" alt="Prev"></a>&nbsp;</td><td align="center" width="20%">&nbsp;</td><td align="right" width="40%">&nbsp;</td></tr><tr><td valign="top" align="left" width="40%">Chapter&nbsp;8.&nbsp;Null Handler&nbsp;</td><td align="center" width="20%"><a accesskey="h" href="index.html"><img src="../images/navigation/home.gif" alt="Home"></a></td><td valign="top" align="right" width="40%">&nbsp;</td></tr></table></div></body></html>