/usr/lib/bouml/xmi2/148482.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 | class UmlUseCaseAssociation
!!!132484.cpp!!! write(inout out : FileOut, in d : UmlItem, in rank : int, in k : str) : void
out.indent();
out << '<' << k << " xmi:type=\"uml:Association\"";
out.id_prefix(d, "UCAC", rank);
if (! name().isEmpty()){
out << " name=\"";
out.quote(name());
out << "\">\n";
}
else
out << ">\n";
out.indent(+1);
out.indent();
out << "<ownedEnd xmi:type=\"uml:Property\"";
out.id_prefix(d, "AC", rank);
out.ref(actor(), "type");
out.ref(d, "association", "UCAC", rank);
out << "/>\n";
out.indent();
out << "<ownedEnd xmi:type=\"uml:Property\"";
out.id_prefix(d, "UC", rank);
out.ref(useCase()->useCase(), "type");
out.ref(d, "association", "UCAC", rank);
out << "/>\n";
out.indent(-1);
out.indent();
out << "</" << k << ">\n";
|