This file is indexed.

/usr/lib/bouml/uml_projection/6528.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
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
class UmlBaseComponent
!!!76800.cpp!!!	create(inout parent : UmlComponentView, in s : str) : UmlComponent
  return (UmlComponent *) parent->create_(aComponent, s);
!!!76800.java!!!	create(inout parent : UmlComponentView, in s : str) : UmlComponent
  return (UmlComponent) parent.create_(anItemKind.aComponent, s);
!!!76928.cpp!!!	kind() : anItemKind
  return aComponent;
!!!76928.java!!!	kind() : anItemKind
  return anItemKind.aComponent;
!!!77056.cpp!!!	associatedDiagram() : UmlComponentDiagram
  read_if_needed_();
  
  return _assoc_diagram;
!!!77056.java!!!	associatedDiagram() : UmlComponentDiagram
  read_if_needed_();
  
  return _assoc_diagram;
!!!77184.cpp!!!	set_AssociatedDiagram(inout d : UmlComponentDiagram) : bool
  UmlCom::send_cmd(_identifier, setAssocDiagramCmd, ((UmlBaseItem *) d)->_identifier);
  if (UmlCom::read_bool()) {
    _assoc_diagram = d;
    return TRUE;
  }
  else
    return FALSE;
!!!77184.java!!!	set_AssociatedDiagram(inout d : UmlComponentDiagram) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, d.identifier_());
  UmlCom.check();
  
  _assoc_diagram = d;

!!!78080.cpp!!!	realizingClasses() : UmlClass
  read_if_needed_();
  
  return _realizing;
!!!78080.java!!!	realizingClasses() : UmlClass
  read_if_needed_();
  
  return (UmlClass[]) _realizing.clone();
!!!78208.cpp!!!	providedClasses() : UmlClass
  read_if_needed_();
  
  return _provided;
!!!78208.java!!!	providedClasses() : UmlClass
  read_if_needed_();
  
  return (UmlClass[]) _provided.clone();
!!!78336.cpp!!!	requiredClasses() : UmlClass
  read_if_needed_();
  
  return _required;
!!!78336.java!!!	requiredClasses() : UmlClass
  read_if_needed_();
  
  return (UmlClass[]) _required.clone();
!!!77824.cpp!!!	set_AssociatedClasses(inout realizing : UmlClass, inout provided : UmlClass, inout required : UmlClass) : bool
  UmlCom::send_cmd(_identifier, setAssocClassesCmd,
		   realizing, provided, required);
  if (UmlCom::read_bool()) {
    if (_defined) {
      _realizing = realizing;
      _provided = provided;
      _required = required;
    }
    return TRUE;
  }
  else
    return FALSE;
!!!77824.java!!!	set_AssociatedClasses(inout realizing : UmlClass, inout provided : UmlClass, inout required : UmlClass) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocClassesCmd,
		  realizing, provided, required);
  UmlCom.check();
  
  _realizing = (UmlClass[]) realizing.clone();
  _provided = (UmlClass[]) provided.clone();
  _required = (UmlClass[]) required.clone();
!!!77696.cpp!!!	unload(in rec : bool, in del : bool) : void
  _realizing.clear();
  _provided.clear();
  _required.clear();

  UmlBaseItem::unload(rec, del);
!!!77696.java!!!	unload(in rec : bool, in del : bool) : void
  _realizing = null;
  _provided = null;
  _required = null;
  super.unload(rec, del);
!!!77312.cpp!!!	read_uml_() : void
  _assoc_diagram = (UmlComponentDiagram *) UmlBaseItem::read_();
  UmlBaseItem::read_uml_();
  
  unsigned n;
  unsigned index;
  
  n = UmlCom::read_unsigned();
  _realizing.resize(n);
    
  for (index = 0; index != n; index += 1)
    _realizing.insert(index, (UmlClass *) UmlBaseItem::read_());

  n = UmlCom::read_unsigned();
  _provided.resize(n);
    
  for (index = 0; index != n; index += 1)
    _provided.insert(index, (UmlClass *) UmlBaseItem::read_());

  n = UmlCom::read_unsigned();
  _required.resize(n);
    
  for (index = 0; index != n; index += 1)
    _required.insert(index, (UmlClass *) UmlBaseItem::read_());
!!!77312.java!!!	read_uml_() : void
  _assoc_diagram = (UmlComponentDiagram) UmlBaseItem.read_();
  super.read_uml_();
  
  int n;
  int index;
  
  n = UmlCom.read_unsigned();
  _realizing = new UmlClass[n];
  
  for (index = 0; index != n; index += 1)
    _realizing[index] = (UmlClass) UmlBaseItem.read_();
  
  n = UmlCom.read_unsigned();
  _provided = new UmlClass[n];
  
  for (index = 0; index != n; index += 1)
    _provided[index] = (UmlClass) UmlBaseItem.read_();
  
  n = UmlCom.read_unsigned();
  _required = new UmlClass[n];
  
  for (index = 0; index != n; index += 1)
    _required[index] = (UmlClass) UmlBaseItem.read_();
!!!77440.cpp!!!	UmlBaseComponent(in id : item_id, in n : string)
  _assoc_diagram = 0;