📄 iactioncontext.cs
字号:
using System;
using NetBpm.Workflow.Execution;
namespace NetBpm.Workflow.Delegation
{
/// <summary> allows the Interaction-implementor to interact with and get information from
/// the process engine.
/// </summary>
public interface IActionContext : IHandlerContext
{
/// <summary> gets the {@link Flow} in which the {@link Action} is executed.</summary>
new IFlow GetFlow();
/// <summary> sets the {@link AttributeInstance} for the attribute with name attributeName to the
/// value attributeValue.
/// </summary>
void SetAttribute(String attributeName, Object attributeValue);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -