/usr/lib/bouml/empty/150272.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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | class UmlBaseActivityPartition
!!!231296.cpp!!! create(inout parent : UmlItem, inout s : str) : UmlActivityPartition
return (UmlActivityPartition *) parent->create_(aPartition, s);
!!!231296.java!!! create(inout parent : UmlItem, inout s : str) : UmlActivityPartition
return (UmlActivityPartition) parent.create_(anItemKind.aPartition, s);
!!!231424.cpp!!! kind() : anItemKind
return aPartition;
!!!231424.java!!! kind() : anItemKind
return anItemKind.aPartition;
!!!231808.cpp!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!231808.java!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!231936.cpp!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : 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;
!!!231936.java!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, (d == null) ? (long) 0 : d.identifier_());
UmlCom.check();
_assoc_diagram = d;
!!!232064.cpp!!! isDimension() : bool
read_if_needed_();
return _dimension;
!!!232064.java!!! isDimension() : bool
read_if_needed_();
return _dimension;
!!!232192.cpp!!! set_isDimension(in v : bool) : bool
return set_it_(_dimension, v, setMultiplicityCmd);
!!!232192.java!!! set_isDimension(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setMultiplicityCmd, (v) ? (byte) 1 : (byte) 0);
UmlCom.check();
_dimension = v;
!!!232320.cpp!!! isExternal() : bool
read_if_needed_();
return _external;
!!!232320.java!!! isExternal() : bool
read_if_needed_();
return _external;
!!!232448.cpp!!! set_isExternal(in v : bool) : bool
return set_it_(_external, v, setIsCppExternalCmd);
!!!232448.java!!! set_isExternal(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIsCppExternalCmd, (v) ? (byte) 1 : (byte) 0);
UmlCom.check();
_external = v;
!!!232576.cpp!!! represents() : UmlItem
read_if_needed_();
return _represents;
!!!232576.java!!! represents() : UmlItem
read_if_needed_();
return _represents;
!!!232704.cpp!!! set_Represents(in v : UmlItem) : bool
UmlCom::send_cmd(_identifier, setDerivedCmd, (v == 0) ? (void *) v : ((UmlBaseItem *) v)->_identifier);
if (UmlCom::read_bool()) {
_represents = v;
return TRUE;
}
else
return FALSE;
!!!232704.java!!! set_Represents(in v : UmlItem) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDerivedCmd, (v == null) ? (long) 0 : v.identifier_());
UmlCom.check();
_represents = v;
!!!232832.cpp!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram *) UmlBaseItem::read_();
UmlBaseItem::read_uml_();
_dimension = UmlCom::read_bool();
_external = UmlCom::read_bool();
_represents = (UmlItem *) UmlBaseItem::read_();
!!!232832.java!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram) UmlBaseItem.read_();
super.read_uml_();
_dimension = UmlCom.read_bool();
_external = UmlCom.read_bool();
_represents = (UmlItem) UmlBaseItem.read_();
|