/usr/lib/bouml/xmi2import/135298.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 | class UmlActivityAction
!!!208642.cpp!!! container(in kind : anItemKind, in token : Token, inout in : FileIn) : UmlItem
switch (kind) {
case anActivityPin:
return this;
default:
return parent()->container(kind, token, in);
}
!!!212994.cpp!!! import_it(inout in : FileIn, inout token : Token) : void
if (! token.closed()) {
QCString k = token.what();
const char * kstr = k;
while (in.read(), !token.close(kstr))
import(in, token);
}
!!!221186.cpp!!! import(inout in : FileIn, inout token : Token) : void
QCString s = token.what();
if ((s == "precondition") || (s == "postcondition") ||
(s == "localprecondition") || (s == "localpostcondition"))
readCondition(in, token);
else if (s == "ownedrule")
set_Constraint(UmlItem::readConstraint(in, token));
else
UmlItem::import(in, token);
!!!212610.cpp!!! readCondition(inout in : FileIn, inout token : Token) : void
if (! token.closed()) {
QCString k = token.what();
const char * kstr = k;
while (in.read(), !token.close(kstr)) {
QCString s = token.what();
if (s == "specification") {
QCString v = token.valueOf("body");
if (v.isNull())
v = token.valueOf("value"); // UMODEL
if (! token.closed()) {
while (in.read(), !token.close("specification")) {
QCString b = token.what();
if (b == "body")
v = in.body("body");
else if (! token.closed())
in.finish(b);
}
}
if (! v.isEmpty()) {
if (k[1] == 'r')
set_PreCondition(v);
else
set_PostCondition(v);
}
}
if (! token.closed())
in.finish(s);
}
}
|