/usr/lib/bouml/xmi/8833.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 | class UmlItem
!!!145026.cpp!!! xmi() : void
UmlCom::trace("Error : must be applied on a package<br>");
!!!144130.cpp!!! write_if_needed(inout out : FileOut) : bool
const QVector<UmlItem> ch = children();
unsigned n = ch.size();
bool used = FALSE;
for (unsigned i = 0; i != n; i += 1)
used |= ch[i]->write_if_needed(out);
return used;
!!!144258.cpp!!! write(inout out : FileOut) : void
if (! _written) {
_written = TRUE;
parent()->write(out);
}
!!!146306.cpp!!! write_stereotype(inout out : FileOut) : void
if (! stereotype().isEmpty()) {
out.indent();
out << "<UML:ModelElement.stereotype>\n";
out.indent();
out << "\t<UML:Stereotype name=\"";
out.quote(stereotype());
out << "\"/>\n";
out.indent();
out << "</UML:ModelElement.stereotype>\n";
switch (_taggedvalue_mode) {
case 1:
out.indent();
out << "<UML:ModelElement.taggedValue>\n";
out.indent();
out << "\t<UML:TaggedValue tag=\"stereotype\" value=\"";
out.quote(stereotype());
out << "\"/>\n";
out.indent();
out << "</UML:ModelElement.taggedValue>\n";
break;
case 2:
out.indent();
out << "<UML:ModelElement.taggedValue>\n";
out.indent();
out << "\t<UML:TaggedValue.tag>stereotype</UML:TaggedValue.tag>\n";
out.indent();
out << "\t<UML:TaggedValue.value>";
out.quote(stereotype());
out << "</UML:TaggedValue.value>\n";
out.indent();
out << "</UML:ModelElement.taggedValue>\n";
}
}
!!!147074.cpp!!! write_description_properties(inout out : FileOut) : void
if (_taggedvalue_mode != 0) {
if (! description().isEmpty()) {
out.indent();
out << "<UML:ModelElement.taggedValue>\n";
out.indent();
if (_taggedvalue_mode == 1) {
out << "\t<UML:TaggedValue tag=\"documentation\" value=\"";
out.quote(description());
out << "\"/>\n";
}
else {
out << "\t<UML:TaggedValue.tag>documentation</UML:TaggedValue.tag>\n";
out.indent();
out << "\t<UML:TaggedValue.value>";
out.quote(description());
out << "</UML:TaggedValue.value>\n";
}
out.indent();
out << "</UML:ModelElement.taggedValue>\n";
}
const QDict<QCString> up = properties();
QDictIterator<QCString> it(up);
while (it.current()) {
out.indent();
out << "<UML:ModelElement.taggedValue>\n";
out.indent();
if (_taggedvalue_mode == 1) {
out << "\t<UML:TaggedValue tag=\"";
out.quote(it.currentKey());
out << "\" value=\"";
out.quote(*(it.current()));
out << "\"/>\n";
}
else {
out << "\t<UML:TaggedValue.tag>";
out.quote(it.currentKey());
out << "</UML:TaggedValue.tag>\n";
out.indent();
out << "\t<UML:TaggedValue.value>";
out.quote(*(it.current()));
out << "</UML:TaggedValue.value>\n";
}
out.indent();
out << "</UML:ModelElement.taggedValue>\n";
++it;
}
}
!!!130052.cpp!!! ref(inout out : FileOut) : void
// theorically not called
out << "<UML:???kind=" << kind() << "??? ";
out.idref(this);
out << "/>";
|