} else if(rtfElement instanceof RtfList) {
result.write(RtfParagraph.PARAGRAPH);
this.containsInnerList = true;
}
//.result.write(rtfElement.write());
rtfElement.writeContent(result);
if(rtfElement instanceof RtfList) {
result.write(this.parentList.writeListBeginning());
result.write("\\tab".getBytes());
}
}