This file is indexed.

/usr/lib/bouml/usecase_wizard/1536.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
!!!10368.cpp!!!	cppDecl() : string
  read_if_needed_();
  
  return _cpp_decl;
!!!10368.java!!!	cppDecl() : string
  read_if_needed_();
  
  return _cpp_decl;
!!!10496.cpp!!!	set_CppDecl(in s : str) : bool
  return set_it_(_cpp_decl, s, setCppDeclCmd);
!!!10496.java!!!	set_CppDecl(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppDeclCmd, s);
  UmlCom.check();

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

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

  _idl_decl = s;
!!!11136.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);
!!!11136.java!!!	unload(in rec : bool, in del : bool) : void
  _cpp_decl = null;
  _java_decl = null;
  _idl_decl = null;
  super.unload(rec, del);
!!!11392.cpp!!!	read_cpp_() : void
  _cpp_decl = UmlCom::read_string();
!!!11392.java!!!	read_cpp_() : void
  _cpp_decl = UmlCom.read_string();
!!!11520.cpp!!!	read_java_() : void
  _java_decl = UmlCom::read_string();
!!!11520.java!!!	read_java_() : void
  _java_decl = UmlCom.read_string();
!!!11648.cpp!!!	read_idl_() : void
  _idl_decl = UmlCom::read_string();
!!!11648.java!!!	read_idl_() : void
  _idl_decl = UmlCom.read_string();