/usr/lib/bouml/cpp_utilities/2176.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 UmlBaseCollaborationDiagram
!!!17664.cpp!!! create(inout parent : UmlItem, in s : str) : UmlCollaborationDiagram
return (UmlCollaborationDiagram *) parent->create_(aCollaborationDiagram, s);
!!!17664.java!!! create(inout parent : UmlItem, in s : str) : UmlCollaborationDiagram
return (UmlCollaborationDiagram) parent.create_(anItemKind.aCollaborationDiagram, s);
!!!17792.cpp!!! kind() : anItemKind
return aCollaborationDiagram;
!!!17792.java!!! kind() : anItemKind
return anItemKind.aCollaborationDiagram;
!!!216576.cpp!!! definition() : UmlCollaborationDiagramDefinition
if (_def == 0) {
UmlCom::send_cmd(_identifier, sideCmd);
(_def = new UmlCollaborationDiagramDefinition())->read_();
}
return _def;
!!!216576.java!!! definition() : UmlCollaborationDiagramDefinition
if (_def == null) {
UmlCom.send_cmd(identifier_(), OnInstanceCmd.sideCmd);
(_def = new UmlCollaborationDiagramDefinition()).read_();
}
return _def;
!!!216704.cpp!!! unload(in rec : bool, in del : bool) : void
if (_def != 0) { delete _def; _def = 0; }
UmlBaseDiagram::unload(rec, del);
!!!216704.java!!! unload(in rec : bool, in del : bool) : void
_def = null;
super.unload(rec, del);
|