Initial Date: 07.07.2008 @author sergio
100101102103104105106107108
/** * parses the document, builds manifest-datamodel-tree-structure */ public void buildTree() { if (doc != null) { rootNode = new CPManifest(this, (DefaultElement) doc.getRootElement()); rootNode.buildChildren(); } }