/usr/lib/bouml/html/143362.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 | class UmlParameterSet
!!!198402.cpp!!! sKind() : string
return "parameter set";
!!!198402.java!!! sKind() : string
return "parameter set";
!!!207746.cpp!!! html(in pfix : string, in rank : uint, in level : uint) : void
fw.write("<table><tr><td><div class=\"element\">Parameter set <b>");
writeq(name());
fw.write("</div></td></tr></table>");
QCString s = description();
if (!s.isEmpty()) {
fw.write("<p>");
writeq(s);
fw.write("<br /></p>");
}
fw.write("<p>Contains :");
const QVector<UmlActivityPin> & p = pins();
unsigned n = p.size();
for (unsigned i = 0; i != n; i += 1) {
fw.write(" ");
p[i]->write();
}
fw.write("</p>");
write_properties();
unload(FALSE, FALSE);
!!!207746.java!!! html(in pfix : string, in rank : uint, in level : uint) : void
fw.write("<table><tr><td><div class=\"element\">Parameter set <b>");
writeq(name());
fw.write("</div></td></tr></table>");
String s = description();
if (s.length() != 0) {
fw.write("<p>");
writeq(description());
fw.write("<br /></p>");
}
fw.write("<p>Contains :");
UmlActivityPin[] p = pins();
for (int i = 0; i != p.length; i += 1) {
fw.write(" ");
p[i].write();
}
fw.write("</p>");
write_properties();
unload(false, false);
|