public void analyzeLeafNode() {
switch (this.object.getRmTypeName()) {
case "ELEMENT":
this.leafNode = new ElementLeaf(this);
this.add(this.leafNode);
break;
case "INTERVAL_EVENT":
this.leafNode = new IntervalEventLeaf(this);
this.add(this.leafNode);