model.addContainer( sepContainer );
}
if ( commentToken != null )
{
LdifCommentContainer commentContainer = null;
while ( commentToken != null )
{
LdifToken commentSepToken = this.scanner.matchSep();
LdifCommentLine commentLine = new LdifCommentLine( commentToken.getOffset(),
getValueOrNull( commentToken ), getValueOrNull( commentSepToken ) );
if ( commentContainer == null )
{
commentContainer = new LdifCommentContainer( commentLine );
}
else
{
commentContainer.addComment( commentLine );
}
commentToken = this.scanner.matchComment();
}
model.addContainer( commentContainer );