final Object mock = this.mockedFields.get( field );
if ( annoBy.annotatedWith() != Mock.NoAnnotation.class )
{
bind( literal ).annotatedWith( annoBy.annotatedWith() ).toInstance( mock );
}
else if ( !"".equals( annoBy.namedWith() ) )
{
bind( literal ).annotatedWith( Names.named( annoBy.namedWith() ) ).toInstance( mock );
}
else
{