/usr/lib/bouml/deploy/4224.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 | class UmlBaseUseCaseDiagram
!!!43776.cpp!!! create(inout parent : UmlItem, in s : str) : UmlUseCaseDiagram
return (UmlUseCaseDiagram *) parent->create_(anUseCaseDiagram, s);
!!!43776.java!!! create(inout parent : UmlItem, in s : str) : UmlUseCaseDiagram
return (UmlUseCaseDiagram) parent.create_(anItemKind.anUseCaseDiagram, s);
!!!43904.cpp!!! kind() : anItemKind
return anUseCaseDiagram;
!!!43904.java!!! kind() : anItemKind
return anItemKind.anUseCaseDiagram;
!!!213120.cpp!!! definition() : UmlUseCaseDiagramDefinition
if (_def == 0) {
UmlCom::send_cmd(_identifier, sideCmd);
(_def = new UmlUseCaseDiagramDefinition())->read_();
}
return _def;
!!!213120.java!!! definition() : UmlUseCaseDiagramDefinition
if (_def == null) {
UmlCom.send_cmd(identifier_(), OnInstanceCmd.sideCmd);
(_def = new UmlUseCaseDiagramDefinition()).read_();
}
return _def;
!!!213248.cpp!!! unload(in rec : bool, in del : bool) : void
if (_def != 0) { delete _def; _def = 0; }
UmlBaseDiagram::unload(rec, del);
!!!213248.java!!! unload(in rec : bool, in del : bool) : void
_def = null;
super.unload(rec, del);
|