File: JSP.dot

package info (click to toggle)
ruby-graphviz 1.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,124 kB
  • ctags: 695
  • sloc: ruby: 7,656; xml: 26; makefile: 17
file content (52 lines) | stat: -rw-r--r-- 805 bytes parent folder | download | duplicates (5)
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
digraph fig7 {
  node [shape=rect]
  edge [dir=none]

  subgraph compound1 {
  a [label="LFILE"]
    b [label="*\rLREC"]
    c [label="o\rMATCHED LREC"]
    d [label="o\rUNMATCHED LREC"]

    a -> {b}
    b -> {c d}
  }

  subgraph compound2 {
    e [label="RFILE"]
    f [label="*\rRREC"]
    g [label="o\rMATCHED RREC"]
    h [label="o\rUNMATCHED RREC"]

    e -> {f}
    f -> {g h}
  }

  subgraph compound3 {
    i [label="REPORT"]
    j [label="*\rLINE"]
    k [label="o\rTYPE 1"]
    l [label="o\rTYPE 2"]
    m [label="o\rTYPE 3"]
    n [label="o\rTYPE 4"]

    i -> {j}
    j -> {k l m n}
  }

  {rank=same a e i}
  {rank=same b f j}
  {rank=same c d  g h  k l m n}

  subgraph correspondences {
    edge [dir=both]

    a -> e
    e -> i

    c -> g:s
    d -> l:s
    g -> k:s
    h -> m:s
  }
}