This file is indexed.

/usr/lib/bouml/xmi2import/128256.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
class UmlBaseState
!!!128128.cpp!!!	create(inout parent : UmlItem, inout s : str) : UmlState
  return (UmlState *) parent->create_(aState, s);
!!!128128.java!!!	create(inout parent : UmlItem, inout s : str) : UmlState
  return (UmlState) parent.create_(anItemKind.aState, s);
!!!128256.cpp!!!	kind() : anItemKind
  return aState;
!!!128256.java!!!	kind() : anItemKind
  return anItemKind.aState;
!!!129152.cpp!!!	entryBehavior() : string
  read_if_needed_();
  return _uml.on_entry;
!!!129152.java!!!	entryBehavior() : string
  read_if_needed_();
  return _uml.on_entry;
!!!129280.cpp!!!	set_EntryBehavior(in s : str) : bool
  return set_it_(_uml.on_entry, s, setUmlEntryBehaviorCmd);
!!!129280.java!!!	set_EntryBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUmlEntryBehaviorCmd, s);
  UmlCom.check();

  _uml.on_entry = s;
!!!129408.cpp!!!	exitBehavior() : string
  read_if_needed_();
  return _uml.on_exit;
!!!129408.java!!!	exitBehavior() : string
  read_if_needed_();
  return _uml.on_exit;
!!!129536.cpp!!!	set_ExitBehavior(in s : str) : bool
  return set_it_(_uml.on_exit, s, setUmlExitBehaviorCmd);
!!!129536.java!!!	set_ExitBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUmlExitBehaviorCmd, s);
  UmlCom.check();

  _uml.on_exit = s;
!!!129664.cpp!!!	doActivity() : string
  read_if_needed_();
  return _uml.do_activity;
!!!129664.java!!!	doActivity() : string
  read_if_needed_();
  return _uml.do_activity;
!!!129792.cpp!!!	set_DoActivity(in s : str) : bool
  return set_it_(_uml.do_activity, s, setUmlActivityCmd);
!!!129792.java!!!	set_DoActivity(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUmlActivityCmd, s);
  UmlCom.check();

  _uml.do_activity = s;
!!!129920.cpp!!!	cppEntryBehavior() : string
  read_if_needed_();
  return _cpp.on_entry;
!!!129920.java!!!	cppEntryBehavior() : string
  read_if_needed_();
  return _cpp.on_entry;
!!!130048.cpp!!!	set_CppEntryBehavior(in s : str) : bool
  return set_it_(_cpp.on_entry, s, setCppEntryBehaviorCmd);
!!!130048.java!!!	set_CppEntryBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppEntryBehaviorCmd, s);
  UmlCom.check();

  _cpp.on_entry = s;
!!!130176.cpp!!!	cppExitBehavior() : string
  read_if_needed_();
  return _cpp.on_exit;
!!!130176.java!!!	cppExitBehavior() : string
  read_if_needed_();
  return _cpp.on_exit;
!!!130304.cpp!!!	set_CppExitBehavior(in s : str) : bool
  return set_it_(_cpp.on_exit, s, setCppExitBehaviorCmd);
!!!130304.java!!!	set_CppExitBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppExitBehaviorCmd, s);
  UmlCom.check();

  _cpp.on_exit = s;
!!!130432.cpp!!!	cppDoActivity() : string
  read_if_needed_();
  return _cpp.do_activity;
!!!130432.java!!!	cppDoActivity() : string
  read_if_needed_();
  return _cpp.do_activity;
!!!130560.cpp!!!	set_CppDoActivity(in s : str) : bool
  return set_it_(_cpp.do_activity, s, setCppActivityCmd);
!!!130560.java!!!	set_CppDoActivity(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppActivityCmd, s);
  UmlCom.check();

  _cpp.do_activity = s;
!!!130688.cpp!!!	javaEntryBehavior() : string
  read_if_needed_();
  return _java.on_entry;
!!!130688.java!!!	javaEntryBehavior() : string
  read_if_needed_();
  return _java.on_entry;
!!!130816.cpp!!!	set_JavaEntryBehavior(in s : str) : bool
  return set_it_(_java.on_entry, s, setJavaEntryBehaviorCmd);
!!!130816.java!!!	set_JavaEntryBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaEntryBehaviorCmd, s);
  UmlCom.check();

  _java.on_entry = s;
!!!130944.cpp!!!	javaExitBehavior() : string
  read_if_needed_();
  return _java.on_exit;
!!!130944.java!!!	javaExitBehavior() : string
  read_if_needed_();
  return _java.on_exit;
!!!131072.cpp!!!	set_JavaExitBehavior(in s : str) : bool
  return set_it_(_java.on_exit, s, setJavaExitBehaviorCmd);
!!!131072.java!!!	set_JavaExitBehavior(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaExitBehaviorCmd, s);
  UmlCom.check();

  _java.on_exit = s;
!!!131200.cpp!!!	javaDoActivity() : string
  read_if_needed_();
  return _java.do_activity;
!!!131200.java!!!	javaDoActivity() : string
  read_if_needed_();
  return _java.do_activity;
!!!131328.cpp!!!	set_JavaDoActivity(in s : str) : bool
  return set_it_(_java.do_activity, s, setJavaActivityCmd);
!!!131328.java!!!	set_JavaDoActivity(in s : str) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaActivityCmd, s);
  UmlCom.check();

  _java.do_activity = s;
!!!307840.cpp!!!	isActive() : bool
  read_if_needed_();
  return _active;
!!!307840.java!!!	isActive() : bool
  read_if_needed_();
  return _active;
!!!307968.cpp!!!	set_isActive(in v : bool) : bool
  UmlCom::send_cmd(_identifier, setActiveCmd, (char) v);
  if (UmlCom::read_bool()) {
    _active = v;
    return TRUE;
  }
  else
    return FALSE;
!!!307968.java!!!	set_isActive(in v : bool) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setActiveCmd, (v) ? 1 : 0);
  UmlCom.check();

  _active = v;
!!!306944.cpp!!!	specification() : UmlOperation
  read_if_needed_();
  return _specification;
!!!306944.java!!!	specification() : UmlOperation
  read_if_needed_();
  return _specification;
!!!307072.cpp!!!	set_Specification(in v : UmlOperation) : bool
  UmlCom::send_cmd(_identifier, setDefCmd, (v == 0) ? (void *) v : ((UmlBaseItem *) v)->_identifier);
  if (UmlCom::read_bool()) {
    _specification = v;
    return TRUE;
  }
  else
    return FALSE;
!!!307072.java!!!	set_Specification(in v : UmlOperation) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDefCmd, (v == null) ? (long) 0 : v.identifier_());
  UmlCom.check();

  _specification = v;
!!!131456.cpp!!!	associatedDiagram() : UmlStateDiagram
  read_if_needed_();

  return _assoc_diagram;
!!!131456.java!!!	associatedDiagram() : UmlStateDiagram
  read_if_needed_();

  return _assoc_diagram;
!!!148096.cpp!!!	set_AssociatedDiagram(inout d : UmlStateDiagram) : bool
  UmlCom::send_cmd(_identifier, setAssocDiagramCmd, (d == 0) ? (void *) 0 : ((UmlBaseItem *) d)->_identifier);
  if (UmlCom::read_bool()) {
    _assoc_diagram = d;
    return TRUE;
  }
  else
    return FALSE;

!!!148096.java!!!	set_AssociatedDiagram(inout d : UmlStateDiagram) : bool
  UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, (d == null) ? (long) 0 : d.identifier_());
  UmlCom.check();
  _assoc_diagram = d;
!!!131584.cpp!!!	unload(in rec : bool, in del : bool) : void
  _uml.unload();
#ifdef WITHCPP
  _cpp.unload();
#endif
#ifdef WITHJAVA
  _java.unload();
#endif
  UmlBaseItem::unload(rec, del);
!!!131584.java!!!	unload(in rec : bool, in del : bool) : void
  _uml = null;
  _cpp = null;
  _java = null;
  super.unload(rec, del);
!!!131968.cpp!!!	read_uml_() : void
  _assoc_diagram = (UmlStateDiagram *) UmlBaseItem::read_();
  UmlBaseItem::read_uml_();
  _uml.read();
  _specification = (UmlOperation *) UmlBaseItem::read_();
  _active = UmlCom::read_bool();
!!!131968.java!!!	read_uml_() : void
  _assoc_diagram = (UmlStateDiagram) UmlBaseItem.read_();
  super.read_uml_();
  _uml = new StateBehavior();
  _uml.read();
  _specification = (UmlOperation) UmlBaseItem.read_();
  _active = UmlCom.read_bool();
!!!132096.cpp!!!	read_cpp_() : void
  _cpp.read();
!!!132096.java!!!	read_cpp_() : void
  _cpp = new StateBehavior();
  _cpp.read();
!!!132224.cpp!!!	read_java_() : void
  _java.read();
!!!132224.java!!!	read_java_() : void
  _java = new StateBehavior();
  _java.read();