I would like to draw a tree in tex that is more like a sketch of a tree: It should contain variable node numbers.

Important is, that the dots are contained in the tree drawn. Is that possible with an automated command?
You see, since my painting skills are limitated I don't want to use TikZ and simply add the nodes this tree contains. I would like to say: Here is my structure, draw it for me. All I found is drawing trees with complete defined nodes.
EDIT
Without any style definitions here is a minimal example of what I thought about:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\tikzstyle{every node} = [rectangle,
draw=black,
fill=gray,
text=black,
text centered,
rounded corners]
\begin{tikzpicture} [sibling distance=8cm]
\node {Document}
child {
[sibling distance=2cm]
node (p1) {Paragraph}
child {
node (e11) {Element}
child {
node {AttributeSet}
}
}
child {
node (e1n) {Element}
child {
node {AttributeSet}
}
}
child {
node {AttributeSet}
}
}
child {
[sibling distance=2cm]
[sibling distance=2cm]
[sibling distance=2cm]
node (pn) {Paragraph}
child {
node (en1) {Element}
child {
node {AttributeSet}
}
}
child {
node (enn) {Element}
child {
node {AttributeSet}
}
}
child {
node {AttributeSet}
}
}
;
\path[draw,dashed] (p1)--(pn);
\path[draw,dashed] (e11)--(e1n);
\path[draw,dashed] (en1)--(enn);
\end{tikzpicture}
\end{document}
I would prefer the dashed line to be just three/four dots.



Documentin Java. I would like to show that the document can contain 1..n elements. Each of these elements (lvl 1) contains anAtributeSetand 1..n elements. These elements (lvl 2) contain only a singleAtributeSet. The tree shown above is simply all I want to have. Except some captions. – Bertram Nudelbach Jun 15 '12 at 16:52