public class org.springframework.context.expression.BeanFactoryResolver extends java.lang.Object implements org.springframework.expression.BeanResolver
{
private final org.springframework.beans.factory.BeanFactory beanFactory;
public void <init>(org.springframework.beans.factory.BeanFactory)
{
org.springframework.beans.factory.BeanFactory v;
org.springframework.context.expression.BeanFactoryResolver v;
v := @this: org.springframework.context.expression.BeanFactoryResolver;
v := @parameter: org.springframework.beans.factory.BeanFactory;
specialinvoke v.<java.lang.Object: void <init>()>();
staticinvoke <org.springframework.util.Assert: void notNull(java.lang.Object,java.lang.String)>(v, "BeanFactory must not be null");
v.<org.springframework.context.expression.BeanFactoryResolver: org.springframework.beans.factory.BeanFactory beanFactory> = v;
return;
}
public java.lang.Object resolve(org.springframework.expression.EvaluationContext, java.lang.String) throws org.springframework.expression.AccessException
{
org.springframework.beans.factory.BeanFactory v;
org.springframework.context.expression.BeanFactoryResolver v;
java.lang.Object v;
org.springframework.beans.BeansException v;
java.lang.String v;
org.springframework.expression.AccessException v;
org.springframework.expression.EvaluationContext v;
v := @this: org.springframework.context.expression.BeanFactoryResolver;
v := @parameter: org.springframework.expression.EvaluationContext;
v := @parameter: java.lang.String;
label:
v = v.<org.springframework.context.expression.BeanFactoryResolver: org.springframework.beans.factory.BeanFactory beanFactory>;
v = interfaceinvoke v.<org.springframework.beans.factory.BeanFactory: java.lang.Object getBean(java.lang.String)>(v);
label:
return v;
label:
v := @caughtexception;
v = new org.springframework.expression.AccessException;
specialinvoke v.<org.springframework.expression.AccessException: void <init>(java.lang.String,java.lang.Exception)>("Could not resolve bean reference against BeanFactory", v);
throw v;
catch org.springframework.beans.BeansException from label to label with label;
}
}