/usr/lib/bouml/cpp_utilities/4096.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 | class UmlBaseUseCase
!!!43008.cpp!!! create(inout parent : UmlItem, in s : str) : UmlUseCase
return (UmlUseCase *) parent->create_(anUseCase, s);
!!!43008.java!!! create(inout parent : UmlItem, in s : str) : UmlUseCase
return (UmlUseCase) parent.create_(anItemKind.anUseCase, s);
!!!43136.cpp!!! kind() : anItemKind
return anUseCase;
!!!43136.java!!! kind() : anItemKind
return anItemKind.anUseCase;
!!!43264.cpp!!! associatedDiagram() : UmlUseCaseDiagram
read_if_needed_();
return _assoc_diagram;
!!!43264.java!!! associatedDiagram() : UmlUseCaseDiagram
read_if_needed_();
return _assoc_diagram;
!!!43392.cpp!!! set_AssociatedDiagram(inout d : UmlUseCaseDiagram) : bool
UmlCom::send_cmd(_identifier, setAssocDiagramCmd, (d == 0) ? (void *) 0 : ((UmlBaseItem *) d)->_identifier);
if (UmlCom::read_bool()) {
_assoc_diagram = d;
return TRUE;
}
else
return FALSE;
!!!43392.java!!! set_AssociatedDiagram(inout d : UmlUseCaseDiagram) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, (d == null) ? (long) 0 : d.identifier_());
UmlCom.check();
_assoc_diagram = d;
!!!193408.cpp!!! extensionPoints() : string
read_if_needed_();
return _extension_points;
!!!193408.java!!! extensionPoints() : string
read_if_needed_();
return _extension_points;
!!!193536.cpp!!! set_ExtensionPoints(in v : str) : bool
return set_it_(_extension_points, v, replaceExceptionCmd);
!!!193536.java!!! set_ExtensionPoints(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.replaceExceptionCmd, v);
UmlCom.check();
_extension_points = v;
!!!43520.cpp!!! read_uml_() : void
_assoc_diagram = (UmlUseCaseDiagram *) UmlBaseItem::read_();
UmlBaseItem::read_uml_();
_extension_points = UmlCom::read_string();
!!!43520.java!!! read_uml_() : void
_assoc_diagram = (UmlUseCaseDiagram) UmlBaseItem.read_();
super.read_uml_();
_extension_points = UmlCom.read_string();
|