/usr/lib/bouml/uml_projection/133120.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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | class UmlBaseActivity
!!!148224.cpp!!! create(inout parent : UmlClassView, inout s : str) : UmlActivity
return (UmlActivity *) parent->create_(anActivity, s);
!!!148224.java!!! create(inout parent : UmlClassView, inout s : str) : UmlActivity
return (UmlActivity) parent.create_(anItemKind.anActivity, s);
!!!148352.cpp!!! kind() : anItemKind
return anActivity;
!!!148352.java!!! kind() : anItemKind
return anItemKind.anActivity;
!!!148736.cpp!!! preCondition() : string
read_if_needed_();
return _pre_condition;
!!!148736.java!!! preCondition() : string
read_if_needed_();
return _pre_condition;
!!!148864.cpp!!! set_PreCondition(in v : str) : bool
return set_it_(_pre_condition, v, setUmlEntryBehaviorCmd);
!!!148864.java!!! set_PreCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUmlEntryBehaviorCmd, v);
UmlCom.check();
_pre_condition = v;
!!!148992.cpp!!! postCondition() : string
read_if_needed_();
return _post_condition;
!!!148992.java!!! postCondition() : string
read_if_needed_();
return _post_condition;
!!!149120.cpp!!! set_PostCondition(in v : str) : bool
return set_it_(_post_condition, v, setUmlExitBehaviorCmd);
!!!149120.java!!! set_PostCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUmlExitBehaviorCmd, v);
UmlCom.check();
_post_condition = v;
!!!149248.cpp!!! cppPreCondition() : string
read_if_needed_();
return _cpp_pre_condition;
!!!149248.java!!! cppPreCondition() : string
read_if_needed_();
return _cpp_pre_condition;
!!!149376.cpp!!! set_CppPreCondition(in v : str) : bool
return set_it_(_cpp_pre_condition, v, setCppEntryBehaviorCmd);
!!!149376.java!!! set_CppPreCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppEntryBehaviorCmd, v);
UmlCom.check();
_cpp_pre_condition = v;
!!!149504.cpp!!! cppPostCondition() : string
read_if_needed_();
return _cpp_post_condition;
!!!149504.java!!! cppPostCondition() : string
read_if_needed_();
return _cpp_post_condition;
!!!149632.cpp!!! set_CppPostCondition(in v : str) : bool
return set_it_(_cpp_post_condition, v, setCppExitBehaviorCmd);
!!!149632.java!!! set_CppPostCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setCppExitBehaviorCmd, v);
UmlCom.check();
_cpp_post_condition = v;
!!!149760.cpp!!! javaPreCondition() : string
read_if_needed_();
return _java_pre_condition;
!!!149760.java!!! javaPreCondition() : string
read_if_needed_();
return _java_pre_condition;
!!!149888.cpp!!! set_JavaPreCondition(in v : str) : bool
return set_it_(_java_pre_condition, v, setJavaEntryBehaviorCmd);
!!!149888.java!!! set_JavaPreCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaEntryBehaviorCmd, v);
UmlCom.check();
_java_pre_condition = v;
!!!150016.cpp!!! javaPostCondition() : string
read_if_needed_();
return _java_post_condition;
!!!150016.java!!! javaPostCondition() : string
read_if_needed_();
return _java_post_condition;
!!!150144.cpp!!! set_JavaPostCondition(in v : str) : bool
return set_it_(_java_post_condition, v, setJavaExitBehaviorCmd);
!!!150144.java!!! set_JavaPostCondition(in v : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setJavaExitBehaviorCmd, v);
UmlCom.check();
_java_post_condition = v;
!!!150272.cpp!!! isReadOnly() : bool
read_if_needed_();
return _read_only;
!!!150272.java!!! isReadOnly() : bool
read_if_needed_();
return _read_only;
!!!150400.cpp!!! set_isReadOnly(in v : bool) : bool
return set_it_(_read_only, v, setReadOnlyCmd);
!!!150400.java!!! set_isReadOnly(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setReadOnlyCmd, (v) ? (byte) 1 : (byte) 0);
UmlCom.check();
_read_only = v;
!!!150528.cpp!!! isSingleExecution() : bool
read_if_needed_();
return _single_execution;
!!!150528.java!!! isSingleExecution() : bool
read_if_needed_();
return _single_execution;
!!!150656.cpp!!! set_isSingleExecution(in v : bool) : bool
return set_it_(_single_execution, v, setSingleExecutionCmd);
!!!150656.java!!! set_isSingleExecution(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setSingleExecutionCmd, (v) ? (byte) 1 : (byte) 0);
UmlCom.check();
_single_execution = v;
!!!151296.cpp!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!151296.java!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!151424.cpp!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : bool
UmlCom::send_cmd(_identifier, setAssocDiagramCmd, ((UmlBaseItem *) d)->_identifier);
if (UmlCom::read_bool()) {
_assoc_diagram = d;
return TRUE;
}
else
return FALSE;
!!!151424.java!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, d.identifier_());
UmlCom.check();
_assoc_diagram = d;
!!!151552.cpp!!! unload(in rec : bool, in del : bool) : void
_pre_condition = 0;
_post_condition = 0;
#ifdef WITHCPP
_cpp_pre_condition = 0;
_cpp_post_condition = 0;
#endif
#ifdef WITHJAVA
_java_pre_condition = 0;
_java_post_condition = 0;
#endif
UmlBaseItem::unload(rec, del);
!!!151552.java!!! unload(in rec : bool, in del : bool) : void
_pre_condition = null;
_post_condition = null;
_cpp_pre_condition = null;
_cpp_post_condition = null;
_java_pre_condition = null;
_java_post_condition = null;
super.unload(rec, del);
!!!151680.cpp!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram *) UmlBaseItem::read_();
UmlBaseItem::read_uml_();
_pre_condition = UmlCom::read_string();
_post_condition = UmlCom::read_string();
_read_only = UmlCom::read_bool();
_single_execution = UmlCom::read_bool();
!!!151680.java!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram) UmlBaseItem.read_();
super.read_uml_();
_pre_condition = UmlCom.read_string();
_post_condition = UmlCom.read_string();
_read_only = UmlCom.read_bool();
_single_execution = UmlCom.read_bool();
!!!151808.cpp!!! read_cpp_() : void
_cpp_pre_condition = UmlCom::read_string();
_cpp_post_condition = UmlCom::read_string();
!!!151808.java!!! read_cpp_() : void
_cpp_pre_condition = UmlCom.read_string();
_cpp_post_condition = UmlCom.read_string();
!!!151936.cpp!!! read_java_() : void
_java_pre_condition = UmlCom::read_string();
_java_post_condition = UmlCom::read_string();
!!!151936.java!!! read_java_() : void
_java_pre_condition = UmlCom.read_string();
_java_post_condition = UmlCom.read_string();
|