Package org.springframework.ide.eclipse.beans.ui.editor.util

Examples of org.springframework.ide.eclipse.beans.ui.editor.util.BeanReferenceSearchRequestor


    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);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.editor.util.BeanReferenceSearchRequestor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.