@Override
protected void initImageService()
{
final ElementType type = context( Element.class ).type();
final Image imageAnnotation = type.getAnnotation( Image.class );
final Class<?> imageAnnotationHostClass = type.findAnnotationHostClass( imageAnnotation );
final String imagePath = imageAnnotation.path();
this.image = ImageData.readFromClassLoader( imageAnnotationHostClass, imagePath ).optional();
if( this.image == null )
{