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

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


    if (StringUtils.hasText(implementInterface)) {
      new ClassHierachyContentAssistCalculator(implementInterface).computeProposals(context,
          recorder);
    }
    else {
      new ClassContentAssistCalculator(false).computeProposals(context, recorder);
    }
  }
View Full Code Here


    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));
    registerContentAssistCalculator("pointcut-ref", new PointcutReferenceContentAssistCalculator());
    registerContentAssistCalculator("default-impl", new DefaultImplContentAssistCalculator());
    registerContentAssistCalculator("method", new AdviceMethodContentAssistCalculator());
  }
View Full Code Here

*/
public class WebflowContentAssistProcessor extends NamespaceContentAssistProcessorSupport {

  @Override
  public void init() {
    ClassContentAssistCalculator clazz = new ClassContentAssistCalculator(false);
    WebflowBeanReferenceContentAssistCalculator beanRef = new WebflowBeanReferenceContentAssistCalculator();
    StateReferenceContentAssistCalculator stateRef = new StateReferenceContentAssistCalculator();

    // web flow 1.x
    registerContentAssistCalculator("argument", "parameter-type", clazz);
View Full Code Here

      protected Node getFactoryBeanReferenceNode(NamedNodeMap attributes) {
        return attributes.getNamedItem("factory-ref");
      }
    });
   
    ClassContentAssistCalculator clazz = new ClassContentAssistCalculator(true);
    registerContentAssistCalculator("reference-list", "interface", clazz);
    registerContentAssistCalculator("reference", "interface", clazz);
   
    ClassContentAssistCalculator interfac = new ClassContentAssistCalculator(false);
    registerContentAssistCalculator("argument", "type", interfac);


  }
View Full Code Here

    // web flow 1.x
    registerContentAssistCalculator("executor", "registry-ref", beanRef);
    registerContentAssistCalculator("repository", "conversation-manager-ref", beanRef);
    registerContentAssistCalculator("listener", "ref", beanRef);
    registerContentAssistCalculator("attribute", "type",
        new ClassContentAssistCalculator(false));

    // web flow 2.x
    registerContentAssistCalculator("flow-executor", "flow-registry", beanRef);
    registerContentAssistCalculator("listener", "ref", beanRef);
    registerContentAssistCalculator("flow-registry", "parent", beanRef);
View Full Code Here

TOP

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

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.