/usr/lib/bouml/xmi2import/139138.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 | class UmlAddVariableValueAction
!!!202882.cpp!!! init() : void
declareFct("node", "uml:AddVariableValueAction", &importIt);
declareFct("containednode", "uml:AddVariableValueAction", &importIt);
!!!202754.cpp!!! importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
where = where->container(anAddVariableValueAction, token, in);
if (where != 0) {
QCString s = token.valueOf("name");
UmlAddVariableValueAction * a = create(where, s);
if (a == 0)
in.error("cannot create add variable action '"
+ s + "' in '" + where->name() + "'");
a->addItem(token.xmiId(), in);
a->import_it(in, token);
}
|