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

Examples of org.springframework.ide.eclipse.beans.ui.editor.contentassist.BeanReferenceContentAssistCalculator


    this.showExternal = showExternal;
  }

  @Override
  protected IContentAssistCalculator createContentAssistCalculator() {
    return new BeanReferenceContentAssistCalculator(showExternal);
  }
View Full Code Here


   */
  @Override
  public void init() {

    IContentAssistCalculator calculator = new PackageContentAssistCalculator();
    IContentAssistCalculator referenceLocator = new BeanReferenceContentAssistCalculator();

    registerContentAssistCalculator("base-package", calculator);
    registerContentAssistCalculator("auditing", "auditor-aware-ref", referenceLocator);
    registerContentAssistCalculator("repository", "custom-impl-ref", referenceLocator);
  }
View Full Code Here

* @since 2.0
*/
public class AopContentAssistProcessor extends NamespaceContentAssistProcessorSupport {

  public void init() {
    IContentAssistCalculator beanRef = new BeanReferenceContentAssistCalculator();
    registerContentAssistCalculator("aspect", "ref", beanRef);
    registerContentAssistCalculator("advisor", "advice-ref", beanRef);
    registerContentAssistCalculator("delegate-ref", beanRef);
    registerContentAssistCalculator("include", "name", beanRef);
    registerContentAssistCalculator("implement-interface", new ClassContentAssistCalculator(true));
View Full Code Here

   
    PropertyBeanReferenceContentAssistCalculator propertyBean = new PropertyBeanReferenceContentAssistCalculator();
    registerContentAssistCalculator("http://www.osgi.org/xmlns/blueprint/v1.0.0", "bean", "property", "ref",
        propertyBean);

    BeanReferenceContentAssistCalculator globalBean = new BeanReferenceContentAssistCalculator();
    registerContentAssistCalculator("bean", "factory-ref", globalBean);
    registerContentAssistCalculator("reference", "depends-on", globalBean);
    registerContentAssistCalculator("service", "depends-on", globalBean);
    registerContentAssistCalculator("reference-listener", "ref", globalBean);
    registerContentAssistCalculator("ref", "component-id", globalBean);
View Full Code Here

*/
public class WebflowConfigContentAssistProcessor extends NamespaceContentAssistProcessorSupport {

  @Override
  public void init() {
    BeanReferenceContentAssistCalculator beanRef = new BeanReferenceContentAssistCalculator(
        true);

    // web flow 1.x
    registerContentAssistCalculator("executor", "registry-ref", beanRef);
    registerContentAssistCalculator("repository", "conversation-manager-ref", beanRef);
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.editor.contentassist.BeanReferenceContentAssistCalculator

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.