Le document suivant contient les résultats de l'inspection CPD CPD 6.13.0.
Fichier | Ligne |
---|---|
fr/paris/lutece/plugins/wordtemplate/service/WordService.java | 324 |
fr/paris/lutece/plugins/wordtemplate/service/WordService.java | 442 |
public static XWPFTable insertTable( IBody body, XWPFTable table, int posDest ) { IBodyElement bodyElement; if ( posDest > body.getBodyElements( ).size( ) || posDest < 0 ) { return null; } if ( posDest == body.getBodyElements( ).size( ) ) { bodyElement = body.getBodyElements( ).get( posDest - 1 ); } else { bodyElement = body.getBodyElements( ).get( posDest ); } XmlCursor cursor = getCursor( bodyElement ); if ( posDest == body.getBodyElements( ).size( ) ) { cursor.toParent( ); cursor.toEndToken( ); } |