Package tcg.scada.da

Examples of tcg.scada.da.DataPointList


    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here


    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here

    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here

    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here

    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here

        CosDpValueTypeEnum.TypeBoolean);
    source.keyId = keyId++;
    source.name = "source-datapoint";

    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // calculated-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeBoolean);
    datapoint.keyId = keyId++;
    datapoint.name = "calculated-boolean";
View Full Code Here

    Assert.assertEquals(1, intStatus);
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getSourceQuality());
    Assert.assertEquals(CosDpQualityEnum.QualityGood, source.getQuality());
   
    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(source);

    // real-boolean datapoint
    datapoint = new DataPointImpl(CosDpValueTypeEnum.TypeNumber);
    datapoint.keyId = keyId++;
    datapoint.name = "real-number";
View Full Code Here

        CosDpValueTypeEnum.TypeNumber);
    lccDataPoint.keyId = 1;
    lccDataPoint.name = "lcc-datapoint";

    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(lccDataPoint);

    // create output-boolean datapoint
    DataPointImpl datapoint = new DataPointImpl(
        CosDpValueTypeEnum.TypeBoolean);
    datapoint.keyId = 2;
View Full Code Here

        CosDpValueTypeEnum.TypeNumber);
    rccDataPoint.keyId = 1;
    rccDataPoint.name = "rcc-datapoint";

    // create list of datapoint
    DataPointList dpList = new DataPointList();
    dpList.add(rccDataPoint);

    // create output-boolean datapoint
    DataPointImpl datapoint = new DataPointImpl(
        CosDpValueTypeEnum.TypeBoolean);
    datapoint.keyId = 2;
View Full Code Here

TOP

Related Classes of tcg.scada.da.DataPointList

Copyright © 2018 www.massapicom. 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.