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

Examples of org.springframework.ide.eclipse.batch.ui.editor.contentassist.batch.StepReferenceContentProposalProvider


        || (BatchSchemaConstants.ELEM_STOP.equals(elem) && BatchSchemaConstants.ATTR_RESTART.equals(attr))
        || (BatchSchemaConstants.ELEM_SPLIT.equals(elem) && BatchSchemaConstants.ATTR_NEXT.equals(attr))
        || (BatchSchemaConstants.ELEM_STEP.equals(elem) && BatchSchemaConstants.ATTR_NEXT.equals(attr))) {
      TextAttribute attrControl = createStepAttribute(client, attr, required);
      addWidget(attrControl);
      addAdapter(new TextAttributeProposalAdapter(attrControl, new StepReferenceContentProposalProvider(
          getInput(), attr)));
      return true;
    }
    if ((BatchSchemaConstants.ELEM_JOB.equals(elem) && BatchSchemaConstants.ATTR_PARENT.equals(attr))
        || (BatchSchemaConstants.ELEM_STEP.equals(elem) && BatchSchemaConstants.ATTR_PARENT.equals(attr))
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.batch.ui.editor.contentassist.batch.StepReferenceContentProposalProvider

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.