String fieldTypeName = parameterType.getQualifiedSourceName();
IocConfigImpl<?> iocConfig = (IocConfigImpl<?>) configurations.get(fieldTypeName);
if (iocConfig != null)
{
Inject inject = getInjectAnnotation(parameter);
if (inject.scope().equals(org.cruxframework.crux.core.client.ioc.Inject.Scope.DEFAULT))
{
return iocContainerVariable+".get"+fieldTypeName.replace('.', '_')+
"("+Scope.class.getCanonicalName()+"."+iocConfig.getScope().name()+", null)";
}
return iocContainerVariable+".get"+fieldTypeName.replace('.', '_')+