/usr/lib/bouml/xmi2import/144002.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 | class Unresolved
!!!217474.cpp!!! addGeneralization(inout e : UmlItem, inout id : string, in cstr : string) : void
Generalizations.append(Unresolved(e, id, cstr));
!!!217602.cpp!!! addRef(inout e : UmlItem, inout id : string) : void
Refs.append(Unresolved(e, id, ""));
!!!217730.cpp!!! solveThem() : void
QValueList<Unresolved>::Iterator it;
for (it = Refs.begin(); it != Refs.end(); ++it)
(*it).element->solve((*it).idref);
Refs.clear();
for (it = Generalizations.begin(); it != Generalizations.end(); ++it)
(*it).element->solveGeneralizationDependencyRealization(0, (*it).idref, "", (*it).constraint);
Generalizations.clear();
|