This file is indexed.

/usr/lib/bouml/xmi2import/142722.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
class UmlActivityPin
!!!208898.cpp!!!	init() : void
  declareFct("argument", "uml:InputPin", &importIt);
  declareFct("input", "uml:InputPin", &importIt);
  declareFct("insertat", "uml:InputPin", &importIt);
  declareFct("object", "uml:InputPin", &importIt);
  declareFct("removeat", "uml:InputPin", &importIt);
  declareFct("request", "uml:InputPin", &importIt);
  declareFct("target", "uml:InputPin", &importIt);
  declareFct("value", "uml:InputPin", &importIt);
  declareFct("inputvalue", "uml:InputPin", &importIt);
  declareFct("returninformation", "uml:InputPin", &importIt);
  declareFct("first", "uml:InputPin", &importIt);
  declareFct("second", "uml:InputPin", &importIt);
  declareFct("exception", "uml:InputPin", &importIt);
  declareFct("collection", "uml:InputPin", &importIt);
  
  declareFct("output", "uml:OutputPin", &importIt);
  declareFct("outputvalue", "uml:OutputPin", &importIt);
  declareFct("result", "uml:OutputPin", &importIt);
  declareFct("returninformation", "uml:OutputPin", &importIt);

!!!208770.cpp!!!	importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
  where = where->container(anActivityPin, token, in);
    
  if (where != 0) {
    QCString s = token.valueOf("name");
    
    if (s.isEmpty()) {
      s = token.what();
      if (s == "returninformation")
	s = "returnInformation";
      else if (s == "removeat")
	s = "removeAt";
      else if (s == "insertat")
	s = "insertAt";
      else if (s == "inputvalue")
	s = "inputValue";
      else if (s == "outputvalue")
	s = "outputValue";
    }
    
    UmlActivityPin * a = create((UmlActivityAction *) where, s);
    
    if (a == 0)
      in.error("cannot create activity pin '"
	       + s + "' in '" + where->name() + "'");
    
    a->addItem(token.xmiId(), in);

    a->set_Direction((token.xmiType() == "uml:InputPin")
		     ? InputDirection : OutputDirection);
    if (token.valueOf("isunique") == "true")
      a->set_IsUnique(TRUE);
    if (token.valueOf("isexception") == "true")
      a->set_IsException(TRUE);
    if (token.valueOf("isstream") == "true")
      a->set_IsStream(TRUE);

    a->import_it(in, token);
  }