This file is indexed.

/usr/lib/bouml/xmi2/9473.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
55
56
57
58
59
60
61
62
63
64
65
66
67
class UmlNcRelation
!!!195330.cpp!!!	write(inout out : FileOut) : void
  if ((relationKind() == aDependency) &&
      (parent()->kind() == anUseCase) &&
      (target()->kind() == anUseCase)) {
    const char * t;
    const char * r;
    
    if (stereotype() == "include") {
      t = "Include";
      r = "addition";
    }
    else if (stereotype() == "extend") {
      t = "Extend";
      r = "extendedCase";
    }
    else {
      write(out, TRUE);
      return;
    }
      
    out.indent();
    out << "<" << stereotype() << " xmi:type=\"uml:" << t << "\"";
    out.id(this);
    out.ref(target(), r);
    out << ">\n";
    out.indent(+1); 
    write_description_properties(out);
    out.indent(-1);
    out.indent();
    out << "</" << stereotype() << ">\n";
  }
  else
    write(out, TRUE);
!!!195202.cpp!!!	write(inout out : FileOut, in inside : bool) : void
  if (relationKind() == aGeneralisation) {
    if (inside)
      write_generalization(out);
  }
  else {
    if (inside)
      parent()->memo_relation(this);
    else
      write_dependency(out);
  }
!!!195074.cpp!!!	write_generalization(inout out : FileOut) : void
  out.indent();
  out << "<generalization xmi:type=\"uml:Generalization\"";
  out.id(this);
  out.ref(target(), "general");
  out << "/>\n";
!!!194946.cpp!!!	write_dependency(inout out : FileOut) : void
  const char * k = (_uml_20) ? "ownedElement" : "packagedElement";

  out.indent();
  out << '<' << k <<
    (((parent()->kind() == anArtifact) && (stereotype() == "manifest"))
     ?  " xmi:type=\"uml:Manifestation\"" : " xmi:type=\"uml:Dependency\"");
  out.id(this);
  out.ref(parent(), "client");
  out.ref(target(), "supplier");
  out << ">\n";
  out.indent(+1); 
  write_description_properties(out);
  out.indent(-1);
  out.indent();
  out << "</" << k << ">\n";