Class EmptyDesignerParameterFormatProvider
OptimaJet.Workflow.Core.Runtime.EmptyDesignerParameterFormatProvider
Provides the empty fallback implementation of IDesignerParameterFormatProvider, representing the absence of Designer parameter format definitions.
Namespace: OptimaJet.Workflow.Core.Runtime
public class EmptyDesignerParameterFormatProvider : IDesignerParameterFormatProviderType Hierarchy
- EmptyDesignerParameterFormatProvider Current type
- Implemented interfaces
Properties
public static IDesignerParameterFormatProvider Value { get; } #Gets the shared empty Designer parameter format provider.
Methods
public List<CodeActionParameterDefinition> GetFormat(CodeActionType type, string name, string schemeCode) #Gets the ordered form-field definitions for a named action, condition, or rule.
Parameters
Name
Type
Description
typeCodeActionTypeThe parameter usage context: CodeActionType.Action, CodeActionType.Condition, CodeActionType.RuleCheck, or CodeActionType.RuleGet.
nameStringThe action, condition, or rule name selected in the Designer.
schemeCodeStringThe current process scheme code, which can be used to provide scheme-specific fields. The value may be null when the format is requested without a process scheme context.
Returns
Type
Description
List<CodeActionParameterDefinition>An ordered list containing one CodeActionParameterDefinition per form field. Returning null or an empty list indicates that no structured parameter editor is defined; the Designer then uses its raw JSON editor.
Remarks
All arguments are ignored.
Remarks
The provider ignores the requested code action type, name, and scheme and always returns an empty list.