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

Examples of org.springframework.ide.eclipse.beans.ui.editor.hyperlink.ExternalBeanHyperlink


        // assume this is an external reference
        Iterator<?> beans = BeansEditorUtils.getBeansFromConfigSets(file).iterator();
        while (beans.hasNext()) {
          IBean modelBean = (IBean) beans.next();
          if (modelBean.getElementName().equals(target)) {
            return new ExternalBeanHyperlink(modelBean, hyperlinkRegion);
          }
        }
      }
    }
    else if (Class.class.getName().equals(annotationData.getExpectedType())) {
View Full Code Here


          file);
      if (config != null) {
        Set<IBean> beans = WebflowModelUtils.getBeans(config);
        for (IBean bean : beans) {
          if (bean.getElementName().equals(target)) {
            return new ExternalBeanHyperlink(bean, hyperlinkRegion);
          }
        }
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.editor.hyperlink.ExternalBeanHyperlink

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.