This file is indexed.

/usr/lib/bouml/empty/153088.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
class UmlBaseReduceAction
!!!239744.cpp!!!	create(inout parent : UmlItem, inout s : str) : UmlReduceAction
  return (UmlReduceAction *) parent->create_(aReduceAction, s);
!!!239744.java!!!	create(inout parent : UmlItem, inout s : str) : UmlReduceAction
  return (UmlReduceAction) parent.create_(anItemKind.aReduceAction, s);
!!!239872.cpp!!!	kind() : anItemKind
  return aReduceAction;
!!!239872.java!!!	kind() : anItemKind
  return anItemKind.aReduceAction;
!!!240256.cpp!!!	isOrdered() : bool
  read_if_needed_();
  return _ordered;
!!!240256.java!!!	isOrdered() : bool
  read_if_needed_();
  return _ordered;
!!!240384.cpp!!!	set_isOrdered(in v : bool) : bool
  return set_it_(_ordered, v, setFlagCmd);
!!!240384.java!!!	set_isOrdered(in v : bool) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setFlagCmd, (v) ? (byte) 1 : (byte) 0);
  UmlCom.check();

  _ordered = v;
!!!240512.cpp!!!	reducer() : UmlItem
  read_if_needed_();
  return _reducer;
!!!240512.java!!!	reducer() : UmlItem
  read_if_needed_();
  return _reducer;
!!!240640.cpp!!!	set_Reducer(in v : UmlItem) : bool
  UmlCom::send_cmd(_identifier, setDefCmd, (v == 0) ? (void *) v : ((UmlBaseItem *) v)->_identifier);
  if (UmlCom::read_bool()) {
    _reducer = v;
    return TRUE;
  }
  else
    return FALSE;
!!!240640.java!!!	set_Reducer(in v : UmlItem) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDefCmd, (v == null) ? (long) 0 : v.identifier_());
  UmlCom.check();

  _reducer = v;
!!!240768.cpp!!!	read_uml_() : void
  UmlBaseActivityAction::read_uml_();
  _ordered = UmlCom::read_bool();
  _reducer = UmlBaseItem::read_();
!!!240768.java!!!	read_uml_() : void
  super.read_uml_();
  _ordered = UmlCom.read_bool();
  _reducer = UmlBaseItem.read_();