digraph TopLevel {
label = "TopLevel"
compound = true
fontname = Arial
fontsize = 8
bgcolor = lightcyan1
node [
color = black,
fontname = Arial,
fontsize = 8
]
Account [
fontcolor = black,
shape = ellipse,
URL = "classes/Account.html",
color = palegoldenrod,
style = filled,
label = "Account"
]
Publisher [
shape = box,
URL = "classes/Publisher.html",
label = "Publisher"
]
Publisher -> Account [
]
Root [
URL = "classes/Root.html",
label = "Root"
]
Root -> Account [
]
}