Package com.atlassian.jira.workflow
Interface WorkflowPropertyEditor.WorkflowPropertyEditorFactory
- All Known Implementing Classes:
DefaultWorkflowPropertyEditor.DefaultWorkflowPropertyEditorFactory
- Enclosing interface:
- WorkflowPropertyEditor
public static interface WorkflowPropertyEditor.WorkflowPropertyEditorFactory
Factory for
WorkflowPropertyEditor instances.-
Method Summary
Modifier and TypeMethodDescriptionstepPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor descriptor) Create a property editor for the step on the passed workflow.transitionPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor descriptor) Create a property editor for the transition on the passed workflow.
-
Method Details
-
transitionPropertyEditor
WorkflowPropertyEditor transitionPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor descriptor) Create a property editor for the transition on the passed workflow. The workflow and transition must match.- Parameters:
workflow- the workflow to create an editor for.descriptor- the transition to create and editor for.- Returns:
- the editor.
-
stepPropertyEditor
WorkflowPropertyEditor stepPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor descriptor) Create a property editor for the step on the passed workflow. The workflow and step must match.- Parameters:
workflow- the workflow to create an editor for.descriptor- the step to create and editor for.- Returns:
- the editor.
-