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

📄 dataset.as

📁 用于flash/flex的 as3的 2D图形图像图表的动态生成
💻 AS
字号:
package flare.data
{	
	/**
	 * A data set is a collection of data tables.
	 */
	public class DataSet
	{
		/**
		 * Creates a new DataSet.
		 * @param nodes a data table of node data
		 * @param edges a data table of edge data (optional, for graphs only)
		 */
		public function DataSet(nodes:DataTable, edges:DataTable=null) {
			this.nodes = nodes;
			this.edges = edges;
		}

		/** A DataTable of nodes (or table rows). */
		public var nodes:DataTable = null;
		
		/** A DataTable of edges. */
		public var edges:DataTable = null;

	} // end of class DataSet
}

⌨️ 快捷键说明

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