/usr/lib/bouml/xmi2/6913.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 UmlFormalParameter
!!!132227.cpp!!! write(inout out : FileOut, in cl : UmlClass, in rank : int, in uml20 : bool) : void
out.indent();
out << "<parameter";
out.idref_prefix(cl, "TEMPLPARAM", rank);
out << "/>\n";
out.indent();
out << "<ownedParameter xmi:type=\"uml:ClassifierTemplateParameter\"";
out.id_prefix(cl, "TEMPLPARAM", rank);
out << ">\n";
out.indent(+1);
out.indent();
if (uml20)
out << "<ownedElement xmi:type=\"uml:Class\"";
else
out << "<ownedParameteredElement xmi:type=\"uml:Class\"";
out.id_prefix(cl, "TEMPLELEM", rank);
out << " name=\"";
out.quote(name());
out << '"';
out.ref(cl, "templateParameter", "TEMPLPARAM", rank);
out << "/>\n";
if (defaultValue().type != 0)
UmlItem::write_default_value(out, defaultValue().type->name(), cl, rank);
else
UmlItem::write_default_value(out, defaultValue().explicit_type, cl, rank);
out.indent(-1);
out.indent();
out << "</ownedParameter>\n";
|