I think the key concept here is that no matter how you declare it, in Java, an array of anything is simply a normal object, defined as a series of elements of a given type, and therefore arrays of objects can contain other arrays.
There is no support in the JVM for multidimensional arrays to be handled any differently. So there are just two types of array:
The F[] array where F is a fundamental type (int, float, etc.)
The O[] array where O is any other type - including arrays ( O = F[], or O = O'[] )
So, for your question, you can make arrays of arrays, nothing will stop you. Just realize that you are simply accessing one dimensional arrays of object references.
The syntax ((array[i][j])[m][n]) is no different to (((((array[a])[b]))[c])[d])
From reading your question and earlier answers, I would offer the following advice: stay as strongly typed as possible, because you can only discard typing information as you delve deeper into your multi-dimensional array, you can never add it in. In a simple form you could represent your document using multiple simple types:
class Line extends ArrayList<String> {}
class Paragraph extends ArrayList<String> { public Line[] getLines(); }
class TextParagraph extends Paragraph {}
class QuotedParagraph extends Paragraph {}
class HeadingParagraph extends Paragraph {}
class Document { public static void main (String[] args) {
Paragraph[] multiDiDoc = new Paragraph[10];
multiDiDoc[0] = new HeadingParagraph();
} }
Using an Object Model, you can preserve generality ('HeadingParagraph', 'QuotedParagraph', 'TextParagraph' types), and support specificity (arbitrary objects of type Object are not allowed).
If you stick with raw Objects, as your client application gets bigger you'll be wondering more and more often whether you are going to get hit a class cast exception.