participant.cs

来自「xpdl的c#解析器 完全依照xpdl标准」· CS 代码 · 共 38 行

CS
38
字号
using System;

namespace com.use.wfp.xpdl.elements
{
	/// <summary>
	/// Participant 的摘要说明。
	/// </summary>
	public class Participant:BaseElementWithIdName
	{
		private BaseElement ParticipantType;
		public ParticipantType GetParticipantType()
		{
			return (ParticipantType)GetChild( ParticipantType, out ParticipantType, "ParticipantType");
		}
        
		/// <remarks/>
		private string Description;
		public string GetDescription()
		{
			return GetChildText(Description, out Description, "Description");
		}
        
		/// <remarks/>
		private BaseElement ExternalReference;
		public ExternalReference GetExternalReference()
		{
			return (ExternalReference)GetChild( ExternalReference, out ExternalReference, "ExternalReference");
		}
        
		/// <remarks/>
		private BaseElement ExtendedAttributes;
		public ExtendedAttributes GetExtendedAttributes()
		{
			return (ExtendedAttributes)GetChild( ExtendedAttributes, out ExtendedAttributes, "ExtendedAttributes");
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?