/usr/lib/bouml/html/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 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 | class UmlArtifact
!!!128213.cpp!!! html(in pfix : string, in rank : uint, in level : uint) : void
UmlCom::message(name());
UmlItem::html("Artifact", (UmlDiagram *) associatedDiagram());
const char * sep = " associated with : ";
if (stereotype() == "source") {
fw.write("<p>Artifact <i>source</i>");
const QVector<UmlClass> l = associatedClasses();
for (unsigned i = 0; i != l.size(); i += 1) {
fw.write(sep);
l[i]->write();
sep = ", ";
}
}
else {
fw.write("<p><i>");
writeq(stereotype());
fw.write("</i>");
const QVector<UmlArtifact> l = associatedArtifacts();
for (unsigned i = 0; i != l.size(); i += 1) {
fw.write(sep);
l[i]->write();
sep = ", ";
}
}
fw.write("</p>\n");
unload(FALSE, FALSE);
!!!128213.java!!! html(in pfix : string, in rank : uint, in level : uint) : void
UmlCom.message(name());
html("Artifact", associatedDiagram());
UmlItem[] l;
if (stereotype().equals("source")) {
fw.write("<p>Artifact <i>source</i>");
l = associatedClasses();
}
else {
fw.write("<p><i>");
writeq(stereotype());
fw.write("</i>");
l = associatedArtifacts();
}
String sep = " associated with : ";
for (int i = 0; i != l.length; i += 1) {
fw.write(sep);
l[i].write();
sep = ", ";
}
fw.write("</p>\n");
unload(false, false);
!!!129248.cpp!!! sKind() : string
return "artifact";
!!!129248.java!!! sKind() : string
return "artifact";
|