This file is indexed.

/usr/lib/bouml/xmi2/3840.bodies is in bouml-plugouts-src 4.21-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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class UmlBaseNcRelation
!!!41856.cpp!!!	create(in kind : aRelationKind, inout start : UmlItem, inout end : UmlItem) : UmlNcRelation
  UmlCom::send_cmd(start->_identifier, createCmd, aNcRelation,
		   kind, end->_identifier);
  UmlNcRelation * result = (UmlNcRelation *) UmlBaseItem::read_();
  
  if (result != 0)
    start->reread_children_if_needed_();
  
  return result;
!!!41856.java!!!	create(in kind : aRelationKind, inout start : UmlItem, inout end : UmlItem) : UmlNcRelation
  UmlCom.send_cmd(start.identifier_(), OnInstanceCmd.createCmd, anItemKind.aNcRelation,
		  kind, end.identifier_());
  UmlNcRelation result = (UmlNcRelation) UmlBaseItem.read_();
  
  if (result != null)
    start.reread_children_if_needed_();
  else
    throw new RuntimeException("can't be created");
  
  return result;
!!!41984.cpp!!!	kind() : anItemKind
  return aNcRelation;
!!!41984.java!!!	kind() : anItemKind
  return anItemKind.aNcRelation;
!!!42112.cpp!!!	relationKind() : aRelationKind
  read_if_needed_();
  
  return _rel_kind;
!!!42112.java!!!	relationKind() : aRelationKind
  read_if_needed_();
  
  return _rel_kind;
!!!42240.cpp!!!	target() : UmlItem
  read_if_needed_();
  
  return _target;
!!!42240.java!!!	target() : UmlItem
  read_if_needed_();
  
  return _target;
!!!42368.cpp!!!	read_uml_() : void
  UmlBaseItem::read_uml_();
  _rel_kind = (aRelationKind) UmlCom::read_char();
  _target = UmlBaseItem::read_();

!!!42368.java!!!	read_uml_() : void
  super.read_uml_();
  _rel_kind = aRelationKind.fromInt(UmlCom.read_char());
  _target = UmlBaseItem.read_();

!!!42496.cpp!!!	UmlBaseNcRelation(in id : item_id, in n : string)
  _target = 0;