CPD Results
The following document contains the results of PMD's CPD 5.3.5.
Duplications
File |
Line |
fr/paris/lutece/plugins/theme/business/ThemeDAO.java |
94 |
fr/paris/lutece/plugins/theme/business/ThemeDAO.java |
219 |
daoUtil.setString( 1, strCodeTheme );
daoUtil.executeQuery( );
if ( daoUtil.next( ) )
{
theme = new Theme( );
theme.setCodeTheme( daoUtil.getString( 1 ) );
theme.setThemeDescription( daoUtil.getString( 2 ) );
theme.setPathImages( daoUtil.getString( 3 ) );
theme.setPathCss( daoUtil.getString( 4 ) );
theme.setThemeAuthor( daoUtil.getString( 5 ) );
theme.setThemeAuthorUrl( daoUtil.getString( 6 ) );
theme.setThemeVersion( daoUtil.getString( 7 ) );
theme.setThemeLicence( daoUtil.getString( 8 ) );
theme.setPathJs( daoUtil.getString( 9 ) );
}
daoUtil.free( );
return theme;
} |
File |
Line |
fr/paris/lutece/plugins/theme/business/ThemeDAO.java |
100 |
fr/paris/lutece/plugins/theme/business/ThemeDAO.java |
160 |
fr/paris/lutece/plugins/theme/business/ThemeDAO.java |
225 |
theme = new Theme( );
theme.setCodeTheme( daoUtil.getString( 1 ) );
theme.setThemeDescription( daoUtil.getString( 2 ) );
theme.setPathImages( daoUtil.getString( 3 ) );
theme.setPathCss( daoUtil.getString( 4 ) );
theme.setThemeAuthor( daoUtil.getString( 5 ) );
theme.setThemeAuthorUrl( daoUtil.getString( 6 ) );
theme.setThemeVersion( daoUtil.getString( 7 ) );
theme.setThemeLicence( daoUtil.getString( 8 ) );
theme.setPathJs( daoUtil.getString( 9 ) ); |