📄 dataset.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 + -