private final IFile file;
private final SpringProject springProject;
public BeanHelper(IDOMNode beanNode, IFile file, IProject project) {
super(new SpringProject(SpringCore.getModel(), project), new BeanDefinitionHolder(getBeanDefinition(beanNode),
getElementName(beanNode)));
this.beanNode = beanNode;
this.file = file;
this.springProject = new SpringProject(SpringCore.getModel(), project);
AbstractBeanDefinition beanDefinition = (AbstractBeanDefinition) getBeanDefinition();
ConstructorArgumentValues constructorArgumentValues = new ConstructorArgumentValues();
Set<IBeanConstructorArgument> constructorArgs = getConstructorArguments();
int index = 0;