📄 hibernateworkflowentry.cs
字号:
using System;
using System.Collections;
/*
* Copyright (c) 2002-2003 by OpenSymphony
* All rights reserved.
*/
namespace DotNetTools.Workflow.Spi.Hibernate
{
/// <author>
///Hani
/// </author>
/// <author>jjx (.net)</author>
public class HibernateWorkflowEntry : IWorkflowEntry
{
virtual public IList CurrentSteps
{
get
{
return currentSteps;
}
//~ Methods ////////////////////////////////////////////////////////////////
set
{
this.currentSteps = value;
}
}
virtual public IList HistorySteps
{
get
{
return historySteps;
}
set
{
this.historySteps = value;
}
}
virtual public long Id
{
get
{
return id;
}
set
{
this.id = value;
}
}
virtual public bool Initialized
{
get
{
return state > 0;
}
}
virtual public int State
{
get
{
return state;
}
set
{
this.state = value;
}
}
virtual public String WorkflowName
{
get
{
return workflowName;
}
set
{
this.workflowName = value;
}
}
//~ Instance fields ////////////////////////////////////////////////////////
internal IList currentSteps;
internal IList historySteps;
internal String workflowName;
internal long id = - 1;
private int state;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -