This file is indexed.

/usr/lib/bouml/deploy/137856.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
class UmlBaseAccessVariableValueAction
!!!173696.cpp!!!	variable() : UmlItem
  read_if_needed_();
  return _variable;
!!!173696.java!!!	variable() : UmlItem
  read_if_needed_();
  return _variable;
!!!173824.cpp!!!	set_Variable(in v : UmlItem) : bool
  UmlCom::send_cmd(_identifier, setDefCmd, ((UmlBaseItem *) v)->_identifier);
  if (UmlCom::read_bool()) {
    _variable = v;
    return TRUE;
  }
  else
    return FALSE;
!!!173824.java!!!	set_Variable(in v : UmlItem) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDefCmd, v.identifier_());
  UmlCom.check();

  _variable = v;
!!!173952.cpp!!!	read_uml_() : void
  UmlBaseActivityAction::read_uml_();
  _variable = UmlBaseItem::read_();
!!!173952.java!!!	read_uml_() : void
  super.read_uml_();
  _variable = UmlBaseItem.read_();