/usr/lib/bouml/xmi/9473.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 | class UmlNcRelation
!!!130564.cpp!!! write_if_needed(inout out : FileOut) : bool
parent()->write(out);
if (relationKind() == aGeneralisation)
write_generalization(out);
else
write_dependency(out);
return TRUE;
!!!130820.cpp!!! write_generalization(inout out : FileOut) : void
out.indent();
out << "<UML:Generalization";
out.id(this);
out << " isSpecification=\"false\">\n";
out.indent();
out << "\t<UML:Generalization.child>";
parent()->ref(out);
out << "</UML:Generalization.child>\n";
out.indent();
out << "\t<UML:Generalization.parent>";
target()->ref(out);
out << "</UML:Generalization.parent>\n";
out.indent(+1);
write_stereotype(out);
write_description_properties(out);
out.indent(-1);
out.indent();
out << "</UML:Generalization>\n";
!!!130692.cpp!!! write_dependency(inout out : FileOut) : void
out.indent();
out << "<UML:Dependency";
out.id(this);
if (!name().isEmpty() && (((const char *) name())[0] != '<'))
out << " name = \"" << name() << "\"";
out << " visibility = \"private\" isSpecification=\"false\" client=\"";
out.ref(parent());
out << "\" supplier=\"";
out.ref(target());
out << "\">\n";
out.indent(+1);
write_stereotype(out);
write_description_properties(out);
out.indent(-1);
out.indent();
out << "</UML:Dependency>\n";
|