/******************************************************************************* * Copyright (c) 2007 - 2013 Spring IDE Developers * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Spring IDE Developers - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.webflow.ui.editor.contentassist.webflow; import java.util.Set; import org.eclipse.core.resources.IFile; import org.springframework.ide.eclipse.beans.core.model.IBean; import org.springframework.ide.eclipse.beans.ui.editor.contentassist.IContentAssistCalculator; import org.springframework.ide.eclipse.beans.ui.editor.contentassist.IContentAssistContext; import org.springframework.ide.eclipse.beans.ui.editor.contentassist.IContentAssistProposalRecorder; import org.springframework.ide.eclipse.beans.ui.editor.util.BeanReferenceSearchRequestor; import org.springframework.ide.eclipse.webflow.core.Activator; import org.springframework.ide.eclipse.webflow.core.internal.model.WebflowModelUtils; import org.springframework.ide.eclipse.webflow.core.model.IWebflowConfig; /** * {@link IContentAssistCalculator} that proposes bean references. * @author Christian Dupuis * @since 2.0.2 */ public class WebflowBeanReferenceContentAssistCalculator implements IContentAssistCalculator { public void computeProposals(IContentAssistContext context, IContentAssistProposalRecorder recorder) { String matchString = context.getMatchString(); if (matchString == null) { matchString = ""; } IFile file = context.getFile(); BeanReferenceSearchRequestor requestor = new BeanReferenceSearchRequestor(recorder); if (file != null && file.exists()) { IWebflowConfig config = Activator.getModel().getProject(file.getProject()).getConfig(file); if (config != null) { Set<IBean> beans = WebflowModelUtils.getBeans(config); for (IBean bean : beans) { requestor.acceptSearchMatch(bean, file, matchString); } } } } }