* Displays information on all the different
* relationships between different parts
* of the OOXML file container.
*/
public void displayRelations() throws Exception {
PackageRelationshipCollection rels =
container.getRelationships();
for (PackageRelationship rel : rels) {
displayRelation(rel, "");
}
}