This file is indexed.

/usr/share/doc/libwoodstox-java/IMPL_DETAILS is in libwoodstox-java 1:4.1.3-1.

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
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
Here are some notes on implementation, as of Woodstox 4.0.

Namespace handling:

* Internally there is inconsistencies regarding storing of "no prefix" 
  and "no namespace URI", due to long and confusing history of how
  these should be returned. The planned division for handling this
  consistently in future is as follows:
  - "No prefix" is to be stored as NULL entries in all applicable
    arrays.
    + Conversion to "" that Stax API is to return is to be done not
      by internal components (InputElementStack, AttributeCollector),
      but by front-end (BasicStreamReader).
    + Event objects are to store values as they are to be returned
      via api, i.e. as "".
  - "No namespace" is to be stored as NULL internally
    + Conversion to "" that Stax API is to return is to be done not
      by internal components (InputElementStack, AttributeCollector),
      but by front-end (BasicStreamReader).
    + Event objects are to store values as they are to be returned
      via api, i.e. as "".