Example #1
0
 public JEVisSampleWS(JEVisDataSourceWS ds, JsonSample json, JEVisAttribute att)
 {
     this.attribute = att;
     this.ds        = ds;
     this.json      = json;
     ObjectifyValue();
     ObjectifyTimeStamp();
 }
Example #2
0
 public JEVisSampleWS(JEVisDataSourceWS ds, JsonSample json, JEVisAttribute att, JEVisFile file)
 {
     this.attribute = att;
     this.ds        = ds;
     this.json      = json;
     this.file      = file;
     try
     {
         SetValue(file.getFilename());
     }
     catch (Exception ex)
     {
         logger.Error(ex);
     }
 }