Examples of TPropertyList


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

  void registerStockProperties()
  {
    if (stockPropertiesRegistered) return;
    final TEquipmentModule thisEqm = this;
    if (gEqmFactory == null) gEqmFactory = TEquipmentModuleFactory.getInstance();
    stockList = new TPropertyList();
    // TODO Separate handlers for overloaded properties
    stockList.addProperty(TStockProperties.SRVCOMMANDS, new TPropertyHandler()
    {
      protected int call(String devName, TDataType dout, TDataType din, TAccess devAccess)
      {
View Full Code Here

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

    if (dOutput.dArrayLength == 0)
    { // strip the read access off if no data returned
      devAccess &= ~(TAccess.CA_READ);
      dOutput.dFormat = TFormat.CF_NULL;
    }
    TPropertyList pl = TStockProperties.getPropertyList();
    isQuery = pl != null ? TStockProperties.getPropertyList().hasProperty(devProperty) : false;
    if (isBlackListed())
    { // link parameters have been black listed -> don't send out
      if (trace) traceLink("makeLink"," has been blacklisted");
      if (TLinkFactory.debugLevel > 0) DbgLog.log("makeLink","link " + getFullDeviceNameAndProperty() + " has been black listed");
View Full Code Here

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

  void registerStockProperties()
  {
    if (stockPropertiesRegistered) return;
    final TEquipmentModule thisEqm = this;
    if (gEqmFactory == null) gEqmFactory = TEquipmentModuleFactory.getInstance();
    stockList = new TPropertyList();
    // TODO Separate handlers for overloaded properties
    stockList.addProperty(TStockProperties.SRVCOMMANDS, new TPropertyHandler()
    {
      protected int call(String devName, TDataType dout, TDataType din, TAccess devAccess)
      {
View Full Code Here

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

    if (dOutput.dArrayLength == 0)
    { // strip the read access off if no data returned
      devAccess &= ~(TAccess.CA_READ);
      dOutput.dFormat = TFormat.CF_NULL;
    }
    TPropertyList pl = TStockProperties.getPropertyList();
    isQuery = pl != null ? TStockProperties.getPropertyList().hasProperty(devProperty) : false;
    if (isBlackListed())
    { // link parameters have been black listed -> don't send out
      if (TLinkFactory.debugLevel > 0) DbgLog.log("makeLink","link " + getFullDeviceName() + " " + getProperty() + " has been black listed");
      linkStatus = tf.getBlackListedLinkStatus(this);
View Full Code Here

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

    {
      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();
    }
View Full Code Here

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

  void registerStockProperties()
  {
    if (stockPropertiesRegistered) return;
    final TEquipmentModule thisEqm = this;
    if (gEqmFactory == null) gEqmFactory = TEquipmentModuleFactory.getInstance();
    stockList = new TPropertyList();
    // TODO Separate handlers for overloaded properties
    stockList.addProperty(TStockProperties.SRVCOMMANDS, new TPropertyHandler()
    {
      protected int call(String devName, TDataType dout, TDataType din, TAccess devAccess)
      {
View Full Code Here

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

    {
      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();
    }
View Full Code Here

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

    {
      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();
    }
View Full Code Here

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

    if (dOutput.dArrayLength == 0)
    { // strip the read access off if no data returned
      devAccess &= ~(TAccess.CA_READ);
      dOutput.dFormat = TFormat.CF_NULL;
    }
    TPropertyList pl = TStockProperties.getPropertyList();
    isQuery = pl != null ? TStockProperties.getPropertyList().hasProperty(devProperty) : false;
    if (isBlackListed())
    { // link parameters have been black listed -> don't send out
      if (trace) traceLink("makeLink"," has been blacklisted");
      if (TLinkFactory.debugLevel > 0) DbgLog.log("makeLink","link " + getFullDeviceNameAndProperty() + " has been black listed");
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.