This file is indexed.

/usr/lib/bouml/xmi2import/2176.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
class UmlBaseCollaborationDiagram
!!!17664.cpp!!!	create(inout parent : UmlItem, in s : str) : UmlCollaborationDiagram
  return (UmlCollaborationDiagram *) parent->create_(aCollaborationDiagram, s);
!!!17664.java!!!	create(inout parent : UmlItem, in s : str) : UmlCollaborationDiagram
  return (UmlCollaborationDiagram) parent.create_(anItemKind.aCollaborationDiagram, s);
!!!17792.cpp!!!	kind() : anItemKind
  return aCollaborationDiagram;
!!!17792.java!!!	kind() : anItemKind
  return anItemKind.aCollaborationDiagram;
!!!273920.cpp!!!	definition() : UmlCollaborationDiagramDefinition
  if (_def == 0) {
    UmlCom::send_cmd(_identifier, sideCmd);
    (_def = new UmlCollaborationDiagramDefinition())->read_();
  }
  return _def;
!!!273920.java!!!	definition() : UmlCollaborationDiagramDefinition
  if (_def == null) {
    UmlCom.send_cmd(identifier_(), OnInstanceCmd.sideCmd);
    (_def = new UmlCollaborationDiagramDefinition()).read_();
  }
  return _def;
!!!274048.cpp!!!	unload(in rec : bool, in del : bool) : void
  if (_def != 0) { delete _def; _def = 0; }
  UmlBaseDiagram::unload(rec, del);
!!!274048.java!!!	unload(in rec : bool, in del : bool) : void
  _def = null;
  super.unload(rec, del);