This file is indexed.

/usr/lib/bouml/xmi2/148738.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
54
class UmlClassInstanceReference
!!!136580.cpp!!!	connector(in other : UmlClassInstanceReference) : str
  static char s[32];
  
  if (other->rank < rank)
    sprintf(s, "CONNECTOR%d_%d_", other->rank, rank);
  else
    sprintf(s, "CONNECTOR%d_%d_", rank, other->rank);
  
  return s;
!!!139012.cpp!!!	attribute() : str
  static char s[32];
  
  sprintf(s, "COLLATTR%d_", rank);
  
  return s;
!!!140548.cpp!!!	lifeline() : str
  static char s[32];
  
  sprintf(s, "LIFELINE%d_", rank);
  
  return s;
!!!140420.cpp!!!	write_lifelines(inout out : FileOut, in diagram : UmlItem, in insts : UmlClassInstanceReference) : void
  unsigned sup = insts.size();
  unsigned index;
  
  for (index = 0; index != sup; index += 1) {
    UmlClassInstanceReference * ci = insts.at(index);
    
    out.indent();
    out << "<lifeline xmi:type=\"uml:Lifeline\"";
    out.id_prefix(diagram, ci->lifeline());
    out << " name=\"";
    out.quote(ci->name());
    out << '"';
    out.ref(diagram, "represents", ci->attribute());
    out << "/>\n";
  }
!!!138884.cpp!!!	write_attributes(inout out : FileOut, in diagram : UmlItem, in insts : UmlClassInstanceReference) : void
  unsigned sup = insts.size();
  unsigned index;
  
  for (index = 0; index != sup; index += 1) {
    UmlClassInstanceReference * ci = insts.at(index);
    
    out.indent();
    out << "<ownedAttribute xmi:type=\"uml:Property\"";
    out.id_prefix(diagram, ci->attribute());
    out << " name=\"";
    out.quote(ci->name());
    out << '"';
    out.ref(ci->type(), "type");
    out << "/>\n";
  }