Multiple Views Single Document

This question seems quite basic, but in the API and forum I cannot seem to confirm my suspicion.

I have a single JGoDocument with multiple JGoViews; (these views show the same complex systems from different points of view).
Autolayout seems to only work on Documents and Networks; how can I use autolayout on my separate views without impacting the others if I have the same document?
So that I do not need to duplicate the document and maintain it.
Thanks,
Bryan
If you need to have different diagram layouts in different views, you will need to have multiple documents. With only 1 document, there is only 1 instance of each of the objects in your diagram. When the x,y location properties are changed for that instance, it is necessarily changed for every view of that instance.
But it's easy to make a copy of a document, for example:
goView2.getDocument().copyFromCollection(goView1.getDocument());