Ejemplo n.º 1
0
 protected override void ReleaseDerived()
 {
     desc = null;
     formats = null;
     experiments = null;
 }
Ejemplo n.º 2
0
 public TSData(DataFormatCollection tsFormats, Chunk chunk )
     : base(chunk)
 {
     this.tsFormats = tsFormats;
 }
Ejemplo n.º 3
0
 protected override void ReleaseDerived()
 {
     tsFormats = null;
     tsIdxDataItems = null;
     idxTsDataItems = null;
 }
Ejemplo n.º 4
0
 public NTSData(DataFormatCollection dataFormats, Chunk chunk)
     : base(chunk)
 {
     // chunk: expr
     formats = dataFormats;
 }
Ejemplo n.º 5
0
 protected override void ReleaseDerived()
 {
     formats = null;
     dataList = null;
     dataNameToIndex = null;
 }
Ejemplo n.º 6
0
 protected override void ReleaseDerived()
 {
     name = null;
     ntsData = null;
     tsData = null;
     dataFormats = null;
 }
Ejemplo n.º 7
0
 public Experiment( Chunk chunk, DataFormatCollection dataFmts )
     : base(chunk)
 {
     this.dataFormats = dataFmts;
 }
Ejemplo n.º 8
0
 public TSData(DataFormatCollection tsFormats, Chunk chunk) : base(chunk)
 {
     this.tsFormats = tsFormats;
 }
Ejemplo n.º 9
0
 public NTSData(DataFormatCollection dataFormats, Chunk chunk) : base(chunk)
 {
     // chunk: expr
     formats = dataFormats;
 }
Ejemplo n.º 10
0
 public Experiment(Chunk chunk, DataFormatCollection dataFmts) : base(chunk)
 {
     this.dataFormats = dataFmts;
 }