Examples of CosDpValueStruct


Examples of tcg.scada.cos.CosDpValueStruct

    String[] items = new String[1];
    items[0] = datapointName.replace(".Value", "");

    //get the actual value
    CosDpValueStruct[] values = new CosDpValueStruct[1];
    values[0] = new CosDpValueStruct();
    values[0].quality = CosDpQualityEnum.QualityGood;
    values[0].timestamp = 0;
    values[0].value = new CosDpValueUnion();
   
    //storage for error
View Full Code Here

Examples of tcg.scada.cos.CosDpValueStruct

   */
  public void testSetSourceValueCosDpValueStruct()
  {
    int keyId = 1;

    CosDpValueStruct value = new CosDpValueStruct();
    value.value = new CosDpValueUnion();
    value.quality = CosDpQualityEnum.QualityGood;
    DataPointImpl datapoint = null;
    int status = 0;
    long updateTs = Calendar.getInstance().getTimeInMillis();
View Full Code Here

Examples of tcg.scada.cos.CosDpValueStruct

    if (datapoints == null || states == null || offset < 0)
    {
      return;
    }

    CosDpValueStruct value = new CosDpValueStruct();
    value.timestamp = 0;
    value.quality = CosDpQualityEnum.QualityGood;

    // update the value
    IDataPoint dp = null;
View Full Code Here

Examples of tcg.scada.cos.CosDpValueStruct

    if (datapoints == null || values == null || offset < 0)
    {
      return;
    }

    CosDpValueStruct value = new CosDpValueStruct();
    value.timestamp = 0;
    value.quality = CosDpQualityEnum.QualityGood;

    // update the value
    DataPoint dp = null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.