if ( parent != null )
{
parent.getLdifFiles( ldifFiles );
}
ApplyLdifFiles annotation = description.getAnnotation( ApplyLdifFiles.class );
if ( ( annotation != null ) && ( annotation.value() != null ) )
{
ldifFiles.addAll( Arrays.asList( annotation.value() ) );
}
return ldifFiles;
}