Examples of TPropertyDescription


Examples of de.desy.tine.server.properties.TPropertyDescription

      TFecLog.log("THistoryRecord: equipment module does not have property "+prp+"!");
      return;     
    }
    if (siz == 1) keepPointsOfInterest = true;
    TPropertyList plst = eqm.getPropertyList();
    TPropertyDescription dsc = plst.getFirstProperty(prp).getDescription();
    if (dsc != null)
    {
      if (TArrayType.isChannel(dsc.getArrayType())) keepPointsOfInterest = true;
      range = dsc.getYRange().getMaxValue() - dsc.getYRange().getMinValue();
    }
    if (hspec.getPollngRate() <= 0)
    {
      TFecLog.log("THistoryRecord: polling interval "+hspec.getPollngRate()+" for property "+prp+" is not allowed");
      return;           
View Full Code Here

Examples of de.desy.tine.server.properties.TPropertyDescription

      TFecLog.log("THistoryRecord: equipment module does not have property "+prp+"!");
      return;     
    }
    if (siz == 1) keepPointsOfInterest = true;
    TPropertyList plst = eqm.getPropertyList();
    TPropertyDescription dsc = plst.getFirstProperty(prp).getDescription();
    if (dsc != null)
    {
      if (TArrayType.isChannel(dsc.getArrayType())) keepPointsOfInterest = true;
      range = dsc.getYRange().getMaxValue() - dsc.getYRange().getMinValue();
    }
    if (hspec.getPollngRate() <= 0)
    {
      TFecLog.log("THistoryRecord: polling interval "+hspec.getPollngRate()+" for property "+prp+" is not allowed");
      return;           
View Full Code Here

Examples of de.desy.tine.server.properties.TPropertyDescription

    public TExportProperty getExportProperty() { return xp; }
    public TPropertyDescription getPropertyDescription() { return prpDesc; }
    expRowHndlr(String targetName)
    {
      xp = new TExportProperty();
      prpDesc = new TPropertyDescription();
      if (targetLocalName == null) targetLocalName = targetName;
    }
View Full Code Here

Examples of de.desy.tine.server.properties.TPropertyDescription

      }
      xp.setDescription(prpDesc);
      registerProperty(xp,null);
      // allocate a new one
      xp = new TExportProperty();
      prpDesc = new TPropertyDescription();
      if (numDevsHint > numDevicesFromExportsFile)
        numDevicesFromExportsFile = numDevsHint;
      return 0;
    }
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.