⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 edgetype.cs

📁 英语句子自然语言处理统计分析例子 Statistical parsing of English sentences Shows how to generate parse trees for
💻 CS
字号:

using System;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
    
    
namespace Netron.Lithium
{    
    /// <summary>
    /// Stores the edge properties in the form of an XML element
    /// </summary>
	[XmlType(IncludeInSchema=true, TypeName="edge.type")]
	[XmlRoot(ElementName="Edge", IsNullable=false, DataType="")]
	public class EdgeType 
	{
		#region Fields		
		/// <summary>
		/// the set of subnodes under the XML element
		/// </summary>
		private GraphDataCollection data = new GraphDataCollection();

		/// <summary>
		/// the uid of the shape where the edge originates
		/// </summary>
		private string from;
		/// <summary>
		/// the uid of the shape where the edge ends
		/// </summary>
		private string to;		
		
		#endregion 

		#region Properties
		
        /// <summary>
        /// Generic data collection of properties
        /// </summary>
		[XmlElement(ElementName="Data", Type=typeof(DataType))]
		public virtual GraphDataCollection Data 
		{
			get 
			{
				return this.data;
			}
			set 
			{
				this.data = value;
			}
		}
        
        
        /// <summary>
        /// The UID of the shape where the connection starts
        /// </summary>
		[XmlAttribute(AttributeName="From")]
		public virtual string From 
		{
			get 
			{
				return this.from;
			}
			set 
			{
				this.from = value;
			}
		}
        
        
        /// <summary>
        /// The UID of the shape where the connection ends
        /// </summary>
		[XmlAttribute(AttributeName="To")]
		public virtual string To 
		{
			get 
			{
				return this.to;
			}
			set 
			{
				this.to = value;
			}
		}
		#endregion  
   
	}
}

⌨️ 快捷键说明

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