This file is indexed.

/usr/lib/bouml/rose/2432.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
68
69
70
71
72
73
74
class UmlBaseClassItem
!!!35456.cpp!!!	cppDecl() : string
  read_if_needed_();
  
  return _cpp_decl;
!!!35456.java!!!	cppDecl() : string
  read_if_needed_();
  
  return _cpp_decl;
!!!35584.cpp!!!	set_CppDecl(in s : str) : bool
  return set_it_(_cpp_decl, s, setCppDeclCmd);
!!!35584.java!!!	set_CppDecl(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppDeclCmd, s);
  UmlCom.check();

  _cpp_decl = s;
!!!35712.cpp!!!	javaDecl() : string
  read_if_needed_();
  
  return _java_decl;
!!!35712.java!!!	javaDecl() : string
  read_if_needed_();
  
  return _java_decl;
!!!35840.cpp!!!	set_JavaDecl(in s : str) : bool
  return set_it_(_java_decl, s, setJavaDeclCmd);
!!!35840.java!!!	set_JavaDecl(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaDeclCmd, s);
  UmlCom.check();

  _java_decl = s;
!!!35968.cpp!!!	idlDecl() : string
  read_if_needed_();
  
  return _idl_decl;
!!!35968.java!!!	idlDecl() : string
  read_if_needed_();
  
  return _idl_decl;
!!!36096.cpp!!!	set_IdlDecl(in s : str) : bool
  return set_it_(_idl_decl, s, setIdlDeclCmd);
!!!36096.java!!!	set_IdlDecl(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIdlDeclCmd, s);
  UmlCom.check();

  _idl_decl = s;
!!!36224.cpp!!!	unload(in rec : bool, in del : bool) : void
#ifdef WITHCPP
  _cpp_decl = 0;
#endif
#ifdef WITHJAVA
  _java_decl = 0;
#endif
#ifdef WITHIDL
  _idl_decl = 0;
#endif
  UmlBaseItem::unload(rec, del);
!!!36224.java!!!	unload(in rec : bool, in del : bool) : void
  _cpp_decl = null;
  _java_decl = null;
  _idl_decl = null;
  super.unload(rec, del);
!!!36352.cpp!!!	read_cpp_() : void
  _cpp_decl = UmlCom::read_string();
!!!36352.java!!!	read_cpp_() : void
  _cpp_decl = UmlCom.read_string();
!!!36480.cpp!!!	read_java_() : void
  _java_decl = UmlCom::read_string();
!!!36480.java!!!	read_java_() : void
  _java_decl = UmlCom.read_string();
!!!36608.cpp!!!	read_idl_() : void
  _idl_decl = UmlCom::read_string();
!!!36608.java!!!	read_idl_() : void
  _idl_decl = UmlCom.read_string();