I have tried to use the solution given in how to draw skewed (unbalanced) tree with tikz-qtree? answer but I am getting error.
Undefined control sequence. \edge[draw=none];
My code is
\Tree[.{Collection(I) \\ $1.2$ V}
\edge[draw=none];
[.Queue(I)
[.PriorityQueue
]
[.{BlockingQueue}
[.PriorityBlockingQueue
]
[.LinkedBlockingQueue
]
]
]
]
I am trying to achieve this diagram
Also I want curvy line around some nodes with text written beside it and dots like \cdots to represents more nodes in tree. Help.

