/usr/lib/bouml/GlobalChange/1280.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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | class UmlBaseAttribute
!!!2176.cpp!!! create(inout parent : UmlClass, in s : str) : UmlAttribute
return (UmlAttribute *) parent->create_(anAttribute, s);
!!!2176.java!!! create(inout parent : UmlClass, in s : str) : UmlAttribute
return (UmlAttribute) parent.create_(anItemKind.anAttribute, s);
!!!2304.cpp!!! kind() : anItemKind
return anAttribute;
!!!2304.java!!! kind() : anItemKind
return anItemKind.anAttribute;
!!!2432.cpp!!! isReadOnly() : bool
read_if_needed_();
return _read_only;
!!!2432.java!!! isReadOnly() : bool
read_if_needed_();
return _read_only;
!!!2560.cpp!!! set_isReadOnly(in y : bool) : bool
UmlCom::send_cmd(_identifier, setIsReadOnlyCmd, (char) y);
if (UmlCom::read_bool()) {
_read_only = y;
return TRUE;
}
else
return FALSE;
!!!2560.java!!! set_isReadOnly(in y : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIsReadOnlyCmd, (y) ? (byte) 1 : (byte) 0);
UmlCom.check();
_read_only = y;
!!!225536.cpp!!! isDerived() : bool
read_if_needed_();
return _derived;
!!!225536.java!!! isDerived() : bool
read_if_needed_();
return _derived;
!!!225664.cpp!!! isDerivedUnion() : bool
read_if_needed_();
return _derived_union;
!!!225664.java!!! isDerivedUnion() : bool
read_if_needed_();
return _derived_union;
!!!225792.cpp!!! set_isDerived(in is_derived : bool, in is_union : bool) : bool
UmlCom::send_cmd(_identifier, setDerivedCmd,
(char) (((is_derived) ? 1 : 0) + ((is_union) ? 2 : 0)));
if (UmlCom::read_bool()) {
_derived = is_derived;
_derived_union = is_union;
return TRUE;
}
else
return FALSE;
!!!225792.java!!! set_isDerived(in is_derived : bool, in is_union : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDerivedCmd,
(byte) (((is_derived) ? 1 : 0) + ((is_union) ? 2 : 0)));
UmlCom.check();
_derived = is_derived;
_derived_union = is_union;
!!!225920.cpp!!! isOrdered() : bool
read_if_needed_();
return _ordered;
!!!225920.java!!! isOrdered() : bool
read_if_needed_();
return _ordered;
!!!226048.cpp!!! set_isOrdered(in v : bool) : bool
UmlCom::send_cmd(_identifier, setOrderingCmd, (char) v);
if (UmlCom::read_bool()) {
_ordered = v;
return TRUE;
}
else
return FALSE;
!!!226048.java!!! set_isOrdered(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setOrderingCmd, (v) ? 1 : 0);
UmlCom.check();
_ordered = v;
!!!226176.cpp!!! isUnique() : bool
read_if_needed_();
return _unique;
!!!226176.java!!! isUnique() : bool
read_if_needed_();
return _unique;
!!!226304.cpp!!! set_isUnique(in v : bool) : bool
UmlCom::send_cmd(_identifier, setUniqueCmd, (char) v);
if (UmlCom::read_bool()) {
_unique = v;
return TRUE;
}
else
return FALSE;
!!!226304.java!!! set_isUnique(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setUniqueCmd, (v) ? 1 : 0);
UmlCom.check();
_unique = v;
!!!2688.cpp!!! defaultValue() : string
read_if_needed_();
return _default_value;
!!!2688.java!!! defaultValue() : string
read_if_needed_();
return _default_value;
!!!2816.cpp!!! set_DefaultValue(in s : str) : bool
return set_it_(_default_value, s, setDefaultValueCmd);
!!!2816.java!!! set_DefaultValue(in s : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDefaultValueCmd, s);
UmlCom.check();
_default_value = s;
!!!2944.cpp!!! type() : UmlTypeSpec
read_if_needed_();
return _type;
!!!2944.java!!! type() : UmlTypeSpec
read_if_needed_();
return _type;
!!!3072.cpp!!! set_Type(in t : UmlTypeSpec) : bool
return set_it_(_type, t, setTypeCmd);
!!!3072.java!!! set_Type(in t : UmlTypeSpec) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setTypeCmd, t);
UmlCom.check();
_type = t;
!!!201472.cpp!!! multiplicity() : string
read_if_needed_();
return _multiplicity;
!!!201472.java!!! multiplicity() : string
read_if_needed_();
return _multiplicity;
!!!201600.cpp!!! set_Multiplicity(in s : str, inout : ) : bool
return set_it_(_multiplicity, s, setMultiplicityCmd);
!!!201600.java!!! set_Multiplicity(in s : str, inout : ) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setMultiplicityCmd, s);
UmlCom.check();
_multiplicity = s;
!!!3200.cpp!!! getOperation() : UmlOperation
read_if_needed_();
return _get_oper;
!!!3200.java!!! getOperation() : UmlOperation
read_if_needed_();
return _get_oper;
!!!3328.cpp!!! addGetOperation() : bool
UmlCom::send_cmd(_identifier, addGetOperCmd);
if (UmlCom::read_bool()) {
reread_children_if_needed_();
return TRUE;
}
else
return FALSE;
!!!3328.java!!! addGetOperation() : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.addGetOperCmd);
UmlCom.check();
reread_children_if_needed_();
!!!3456.cpp!!! setOperation() : UmlOperation
read_if_needed_();
return _set_oper;
!!!3456.java!!! setOperation() : UmlOperation
read_if_needed_();
return _set_oper;
!!!3584.cpp!!! addSetOperation() : bool
UmlCom::send_cmd(_identifier, addSetOperCmd);
if (UmlCom::read_bool()) {
reread_children_if_needed_();
return TRUE;
}
else
return FALSE;
!!!3584.java!!! addSetOperation() : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.addSetOperCmd);
UmlCom.check();
reread_children_if_needed_();
!!!3712.cpp!!! isCppMutable() : bool
read_if_needed_();
return _cpp_mutable;
!!!3712.java!!! isCppMutable() : bool
read_if_needed_();
return _cpp_mutable;
!!!3840.cpp!!! set_isCppMutable(in y : bool) : bool
UmlCom::send_cmd(_identifier, setIsCppMutableCmd, (char) y);
if (UmlCom::read_bool()) {
_cpp_mutable = y;
return TRUE;
}
else
return FALSE;
!!!3840.java!!! set_isCppMutable(in y : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIsCppMutableCmd, (y) ? (byte) 1 : (byte) 0);
UmlCom.check();
_cpp_mutable = y;
!!!3968.cpp!!! isJavaTransient() : bool
read_if_needed_();
return _java_transient;
!!!3968.java!!! isJavaTransient() : bool
read_if_needed_();
return _java_transient;
!!!4096.cpp!!! set_isJavaTransient(in y : bool) : bool
UmlCom::send_cmd(_identifier, setIsJavaTransientCmd, (char) y);
if (UmlCom::read_bool()) {
_java_transient = y;
return TRUE;
}
else
return FALSE;
!!!4096.java!!! set_isJavaTransient(in y : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIsJavaTransientCmd, (y) ? (byte) 1 : (byte) 0);
UmlCom.check();
_java_transient = y;
!!!4224.cpp!!! idlCase() : string
read_if_needed_();
return (_idl_case != 0) ? _idl_case->name() : _idl_explicit_case;
!!!4224.java!!! idlCase() : string
read_if_needed_();
return (_idl_case != null) ? _idl_case.name() : _idl_explicit_case;
!!!4352.cpp!!! set_IdlCase(inout a : UmlAttribute) : bool
UmlCom::send_cmd(_identifier, setIdlCaseCmd, a->_identifier, "");
if (UmlCom::read_bool()) {
_idl_case = a;
_idl_explicit_case = 0;
return TRUE;
}
else
return FALSE;
!!!4352.java!!! set_IdlCase(inout a : UmlAttribute) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIdlCaseCmd, a.identifier_(), "");
UmlCom.check();
_idl_case = a;
_idl_explicit_case = null;
!!!4480.cpp!!! set_IdlCase(in s : str) : bool
UmlCom::send_cmd(_identifier, setIdlCaseCmd, (void *) 0, s);
if (UmlCom::read_bool()) {
_idl_case = 0;
_idl_explicit_case = s;
return TRUE;
}
else
return FALSE;
!!!4480.java!!! set_IdlCase(in s : str) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setIdlCaseCmd, (long) 0, s);
UmlCom.check();
_idl_case = null;
_idl_explicit_case = s;
!!!4608.cpp!!! unload(in rec : bool, in del : bool) : void
_type.explicit_type = 0;
_default_value = 0;
#ifdef WITHIDL
_idl_explicit_case = 0;
#endif
UmlBaseClassMember::unload(rec, del);
_multiplicity = 0;
!!!4608.java!!! unload(in rec : bool, in del : bool) : void
_type = null;
_default_value = null;
_idl_explicit_case = null;
super.unload(rec, del);
_multiplicity = null;
!!!4736.cpp!!! UmlBaseAttribute(in id : item_id, in n : string)
_get_oper = 0;
_set_oper = 0;
#ifdef WITHIDL
_idl_case = 0;
#endif
!!!4864.cpp!!! read_uml_() : void
UmlBaseClassMember::read_uml_();
_type.type = (UmlClass *) UmlBaseItem::read_();
if (_type.type == 0)
_type.explicit_type = UmlCom::read_string();
_multiplicity = UmlCom::read_string();
_default_value = UmlCom::read_string();
_read_only = UmlCom::read_bool();
_derived = UmlCom::read_bool();
_derived_union = UmlCom::read_bool();
_ordered = UmlCom::read_bool();
_unique = UmlCom::read_bool();
_get_oper = (UmlOperation *) UmlBaseItem::read_();
_set_oper = (UmlOperation *) UmlBaseItem::read_();
!!!4864.java!!! read_uml_() : void
super.read_uml_();
_type = new UmlTypeSpec();
_type.type = (UmlClass) UmlBaseItem.read_();
if (_type.type == null)
_type.explicit_type = UmlCom.read_string();
_multiplicity = UmlCom.read_string();
_default_value = UmlCom.read_string();
_read_only = UmlCom.read_bool();
_derived = UmlCom.read_bool();
_derived_union = UmlCom.read_bool();
_ordered = UmlCom.read_bool();
_unique = UmlCom.read_bool();
_get_oper = (UmlOperation) UmlBaseItem.read_();
_set_oper = (UmlOperation) UmlBaseItem.read_();
!!!4992.cpp!!! read_cpp_() : void
UmlBaseClassMember::read_cpp_();
_cpp_mutable = UmlCom::read_bool();
!!!4992.java!!! read_cpp_() : void
super.read_cpp_();
_cpp_mutable = UmlCom.read_bool();
!!!5120.cpp!!! read_java_() : void
UmlBaseClassMember::read_java_();
_java_transient = UmlCom::read_bool();
!!!5120.java!!! read_java_() : void
super.read_java_();
_java_transient = UmlCom.read_bool();
!!!207616.cpp!!! read_php_() : void
UmlBaseClassMember::read_php_();
!!!207616.java!!! read_php_() : void
super.read_php_();
!!!222208.cpp!!! read_python_() : void
UmlBaseClassMember::read_python_();
!!!222208.java!!! read_python_() : void
super.read_python_();
!!!5248.cpp!!! read_idl_() : void
UmlBaseClassItem::read_idl_();
_idl_case = (UmlAttribute *) UmlBaseItem::read_();
if (_idl_case == 0)
_idl_explicit_case = UmlCom::read_string();
!!!5248.java!!! read_idl_() : void
super.read_idl_();
_idl_case = (UmlAttribute) UmlBaseItem.read_();
if (_idl_case == null)
_idl_explicit_case = UmlCom.read_string();
|